-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use ~ in pyproject instead of >= (#197)
- Loading branch information
1 parent
9d7ccec
commit 80f98dc
Showing
1 changed file
with
25 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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] | ||
|