-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace snappy with cramjam (#1091) * add downloads tile (#1085) * Replace snappy with cramjam * Delete test_no_snappy --------- Co-authored-by: Taylor Turner <[email protected]> * Quick fix for dependency max pins (#1120) * Fix dask_expr * Keras and Tensorflow version fix * Keras and Tensorflow version fix * Fix keras bug * pre-commit fix (#1122) * docs: update test link to latest version (#1114) * docs: add contributor notes on where to find documentation branches (#1113) * docs: add contributor notes on where to find documentation branches * docs: update documentation wording to spell out why `dev-gh-pages` and `gh-pages` branches exist for staging content * docs: add note on fork Co-authored-by: Taylor Turner <[email protected]> * Update .github/CONTRIBUTING.md Co-authored-by: Taylor Turner <[email protected]> --------- Co-authored-by: Taylor Turner <[email protected]> * update black version (#1131) * Add memray max version (#1132) * Bug fix for float precision calculation using categorical data with trailing zeros. (#1125) * Revert "Bug fix for float precision calculation using categorical data with t…" (#1133) This reverts commit d3159bd. * fix * make up to date * yep, shouldn't change * bump version --------- Co-authored-by: Gábor Lipták <[email protected]> Co-authored-by: abajpai15 <[email protected]> Co-authored-by: Patrick Carlson <[email protected]> Co-authored-by: James Schadt <[email protected]>
- Loading branch information
1 parent
f8b3e5d
commit a448694
Showing
6 changed files
with
20 additions
and
15 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
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
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
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,5 +1,5 @@ | ||
check-manifest>=0.48 | ||
black==22.3.0 | ||
black>=24.3.0 | ||
isort==5.12.0 | ||
pre-commit==2.19.0 | ||
tox==3.25.1 | ||
|
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,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 |
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,9 +1,9 @@ | ||
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 | ||
pytest-xdist>=2.1.0 | ||
pytest-forked>=1.3.0 | ||
toolz>=0.10.0 | ||
memray>=1.7.0 | ||
memray>=1.7.0,<1.12.0 |