Skip to content

Commit

Permalink
fix: use ~ in pyproject instead of >= (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
phamhoangtuan authored Jun 30, 2023
1 parent 9d7ccec commit 80f98dc
Showing 1 changed file with 25 additions and 27 deletions.
52 changes: 25 additions & 27 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "h1st"
version = "2.1.6"
version = "2.1.7"
description = "Human-First AI (H1st)"
authors = ["Aitomatic, Inc. <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -13,44 +13,42 @@ include = ["h1st/*"]
python = ">=3.8,<3.11"

# Data Processing
numpy = ">=1.22.4" # let higher dependencies figure
pandas = ">=1.5.0"
pyarrow = ">=9.0.0"
numpy = "~1.22.4" # let higher dependencies figure
pandas = "~1.5.0"
pyarrow = "~9.0.0"

# Machine Learning / Deep Learning
scikit-learn = ">=1.1.2"
xgboost = ">=1.7.2"
scikit-learn = "~1.1.2"
xgboost = "~1.7.2"

# Trustworthy AI
graphviz = ">=0.20.1"
lime = ">=0.2.0.1"
shap = ">=0.41.0"
graphviz = "~0.20.1"
lime = "~0.2.0.1"
shap = "~0.41.0"

# File Systems
fsspec = ">=2022.8.2"
s3fs = ">=2022.8.2"
fsspec = "~2022.8.2"
s3fs = "~2022.8.2"

# misc/other
click = ">=8.0.4" # let higher dependencies figure
python-dotenv = ">=0.21.0"
pyyaml = ">=6.0"
"ruamel.yaml" = ">=0.17.21"
tqdm = ">= 4.64.1"
ulid-py = ">= 1.1.0"
loguru = "0.6.0"
click = "~8.0.4" # let higher dependencies figure
python-dotenv = "~0.21.0"
pyyaml = "~6.0"
"ruamel.yaml" = "~0.17.21"
tqdm = "~4.64.1"
ulid-py = "~1.1.0"
loguru = "~0.6.0"

[tool.poetry.dev-dependencies]
commitizen = ">=2.34.0"
pre-commit = ">=2.20.0"
pylint = ">=2.15.3"
pytest = ">=7.1.3"
sphinx = ">=5.1.1"
sphinx-rtd-theme = ">=1.0.0"
commitizen = "~2.34.0"
pre-commit = "~2.20.0"
pylint = "~2.15.3"
pytest = "~7.1.3"
sphinx = "~5.1.1"
sphinx-rtd-theme = "~1.0.0"

[build-system]
requires = [
"poetry-core >= 1.2.0",
]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.pylint.format]
Expand Down

0 comments on commit 80f98dc

Please sign in to comment.