Skip to content

Commit

Permalink
Fix Minimum Dependency Checker Action (#2664)
Browse files Browse the repository at this point in the history
* update to fix min dependency checker action

* update pyproject.toml

* update release notes

* bump urllib min
  • Loading branch information
thehomebrewnerd authored Feb 13, 2024
1 parent c20af01 commit 2734b8b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Future Release
* Update ``release.yaml`` to use trusted publisher for PyPI releases (:pr:`2646`, :pr:`2653`, :pr:`2654`)
* Update dependency checkers and tests to include Dask (:pr:`2658`)
* Fix the tests that run with Woodwork main so they can be triggered (:pr:`2657`)
* Fix minimum dependency checker action (:pr:`2664`)


Thanks to the following people for contributing to this release:
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ test = [
"graphviz >= 0.8.4",
"moto[all] >= 5.0.0",
"pip >= 21.3.1",
"pyarrow >= 3.0.0,<13.0.0",
"pyarrow >= 3.0.0, <13.0.0",
"pympler >= 0.8",
"pytest >= 7.1.2",
"pytest-cov >= 3.0.0",
"pytest-xdist >= 2.5.0",
"smart-open >= 5.0.0",
"urllib3 >= 1.26.5",
"urllib3 >= 1.26.18",
"pytest-timeout >= 2.1.0"
]
dask = [
Expand All @@ -73,9 +73,9 @@ dask = [
spark = [
"woodwork[spark] >= 0.23.0, <0.28.0",
"pyspark >= 3.2.2",
"numpy < 1.24.0",
"pandas < 2.0.0",
"pyarrow < 13.0.0",
"numpy >= 1.21.0, < 1.24.0",
"pandas >= 1.5.0, < 2.0.0",
"pyarrow >= 3.0.0, < 13.0.0",
]
updater = [
"alteryx-open-src-update-checker >= 2.1.0"
Expand Down

0 comments on commit 2734b8b

Please sign in to comment.