Skip to content

Commit

Permalink
Quick fix for dependency max pins (#1120)
Browse files Browse the repository at this point in the history
* Fix dask_expr

* Keras and Tensorflow version fix

* Keras and Tensorflow version fix

* Fix keras bug
  • Loading branch information
abajpai15 authored Mar 22, 2024
1 parent f411110 commit 1f8ec47
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ repos:

# requirements-ml.txt
scikit-learn>=0.23.2,
keras>=2.4.3,
'keras>=2.4.3,<3.0.0',
rapidfuzz>=2.6.1,
tensorflow>=2.6.4; sys.platform != 'darwin',
tensorflow>=2.6.4; sys_platform == 'darwin' and platform_machine != 'arm64',
tensorflow-macos>=2.6.4; sys_platform == 'darwin' and platform_machine == 'arm64',
"tensorflow>=2.6.4,<2.15.0; sys.platform != 'darwin'",
"tensorflow>=2.6.4,<2.15.0; sys_platform == 'darwin' and platform_machine != 'arm64'",
"tensorflow-macos>=2.6.4,<2.15.0; sys_platform == 'darwin' and platform_machine == 'arm64'",
tqdm>=4.0.0,

# requirements-reports.txt
Expand Down
8 changes: 4 additions & 4 deletions requirements-ml.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
scikit-learn>=0.23.2
keras>=2.4.3
keras>=2.4.3,<3.0.0
rapidfuzz>=2.6.1
tensorflow>=2.6.4; sys.platform != 'darwin'
tensorflow>=2.6.4; sys_platform == 'darwin' and platform_machine != 'arm64'
tensorflow-macos>=2.6.4; sys_platform == 'darwin' and platform_machine == 'arm64'
tensorflow>=2.6.4,<2.15.0; sys.platform != 'darwin'
tensorflow>=2.6.4,<2.15.0; sys_platform == 'darwin' and platform_machine != 'arm64'
tensorflow-macos>=2.6.4,<2.15.0; sys_platform == 'darwin' and platform_machine == 'arm64'
tqdm>=4.0.0
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
coverage>=5.0.1
dask>=2.29.0
dask>=2.29.0,<2024.2.0
fsspec>=0.3.3
pytest>=6.0.1
pytest-cov>=2.8.1
Expand Down

0 comments on commit 1f8ec47

Please sign in to comment.