Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUILD: relax upper bounds of package requirements #296

Merged
merged 9 commits into from
Jul 23, 2021
28 changes: 14 additions & 14 deletions condabuild/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ requirements:
- pip>=20.*
- python=3.8.*
run:
- gamma-pytools {{ environ.get('FACET_V_GAMMA_PYTOOLS') }}
- ipython {{ environ.get('FACET_V_IPYTHON') }}
- joblib {{ environ.get('FACET_V_JOBLIB') }}
- lightgbm {{ environ.get('FACET_V_LIGHTGBM') }}
- matplotlib {{ environ.get('FACET_V_MATPLOTLIB') }}
- numpy {{ environ.get('FACET_V_NUMPY') }}
- packaging {{ environ.get('FACET_V_PACKAGING') }}
- pandas {{ environ.get('FACET_V_PANDAS') }}
- python {{ environ.get('FACET_V_PYTHON') }}
- scipy {{ environ.get('FACET_V_SCIPY') }}
- shap {{ environ.get('FACET_V_SHAP') }}
- scikit-learn {{ environ.get('FACET_V_SCIKIT_LEARN') }}
- sklearndf {{ environ.get('FACET_V_SKLEARNDF') }}
- typing_inspect {{ environ.get('FACET_V_TYPING_INSPECT') }}
- gamma-pytools {{ environ.get('FACET_V_GAMMA_PYTOOLS') }}
- ipython {{ environ.get('FACET_V_IPYTHON') }}
- joblib {{ environ.get('FACET_V_JOBLIB') }}
- lightgbm {{ environ.get('FACET_V_LIGHTGBM') }}
- matplotlib-base {{ environ.get('FACET_V_MATPLOTLIB') }}
- numpy {{ environ.get('FACET_V_NUMPY') }}
- packaging {{ environ.get('FACET_V_PACKAGING') }}
- pandas {{ environ.get('FACET_V_PANDAS') }}
- python {{ environ.get('FACET_V_PYTHON') }}
- scipy {{ environ.get('FACET_V_SCIPY') }}
- shap {{ environ.get('FACET_V_SHAP') }}
- scikit-learn {{ environ.get('FACET_V_SCIKIT_LEARN') }}
- sklearndf {{ environ.get('FACET_V_SKLEARNDF') }}
- typing_inspect {{ environ.get('FACET_V_TYPING_INSPECT') }}

test:
imports:
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ requires = [
# direct requirements of gamma-facet
"gamma-pytools ~=1.2,>=1.2.1",
"matplotlib ~=3.0",
"numpy >=1.17,<1.21a",
"packaging ~=20.0",
"numpy >=1.17,<2a",
"packaging >=20",
"pandas >=0.24,<2a",
"scipy ~=1.2",
"shap >=0.34,<0.40a",
Expand Down Expand Up @@ -92,13 +92,13 @@ ipython = "~=7.0"

[build.matrix.max]
# direct requirements of gamma-facet
gamma-pytools = "~=1.2"
gamma-pytools = "~=1.2,>=1.2.1"
matplotlib = "~=3.4"
numpy = ">=1.20,<2a"
packaging = "~=20.9"
packaging = ">=20.9"
pandas = "~=1.2"
python = "~=3.8"
scipy = "~=1.5.3"
scipy = "~=1.5"
shap = "~=0.39.0"
sklearndf = "~=1.2"
# additional maximum requirements of sklearndf
Expand All @@ -107,7 +107,7 @@ lightgbm = "~=3.2"
scikit-learn = "~=0.24.2"
# additional maximum requirements of gamma-pytools
joblib = "~=1.0"
typing_inspect = "~=0.6.0"
typing_inspect = "~=0.7"
# additional maximum requirements of shap
ipython = ">=7"

Expand Down