Skip to content

Commit

Permalink
specify python versions for packages we had issues in the build process
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfryda committed Dec 12, 2023
1 parent 4a22099 commit 4e4ef7a
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions h2o-py/test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ twine==1.10.0
urllib3==1.26.5
grip==4.4.0
wheel==0.38.0
numpy==1.23.5
numpy<=1.23.5; python_version < '3.8'
numpy==1.23.5; python_version >= '3.8'
scipy==1.2.3; python_version == '3.6'
scipy==1.6.3; python_version == '3.7'
scipy==1.10.1; python_version > '3.7'
Expand All @@ -34,15 +35,16 @@ shap==0.29.1
boto3==1.18.65
lifelines>=0.19.5
xlsxwriter==1.3.7
xgboost==1.7.6
xgboost==1.7.6; python_version >= '3.8'
causalml==0.12.3; python_version <= '3.7'
causalml==0.14.1; python_version > '3.7' and python_version < '3.11'
colorama
# not directly required, pinned by Snyk to avoid a vulnerability
pygments==2.7.4; python_version <= '3.7'
pygments==2.15.1; python_version > '3.7'
sphinx==3.0.4; python_version <= '3.8'
sphinx==6.1.3; python_version > '3.8'
datatable==1.0.0; python_version <= '3.9'
polars==0.19.17; python_version > '3.9'
pyarrow==14.0.1; python_version > '3.9'
# not directly required, pinned by Snyk to avoid a vulnerability
pygments==2.7.4; python_version < '3.5'
pygments==2.15.1; python_version >= '3.7'
sphinx==3.0.4; python_version < '3.5'
sphinx==3.5.4; python_version >= '3.6' and python_version <= '3.8'
sphinx==6.1.3; python_version > '3.8'

0 comments on commit 4e4ef7a

Please sign in to comment.