Skip to content

Commit

Permalink
Rework/1297 (#1477)
Browse files Browse the repository at this point in the history
* Confirm pandas==0.25.0 is not compatible with tqdm<4.33.0

* Upgrade tqdm to >=4.33.0, which is now compatible with pandas==0.25.0

See tqdm/tqdm#780
  • Loading branch information
Hiromu Hota authored and henryre committed Oct 11, 2019
1 parent 34100eb commit b0ad3f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ numpy>=1.16.0,<2.0.0
scipy>=1.2.0,<2.0.0

# Data storage and function application
pandas>=0.24.0,<0.25.0
tqdm>=4.29.0,<5.0.0
pandas>=0.25.0,<0.26.0
tqdm>=4.33.0,<5.0.0

# Internal models
scikit-learn>=0.20.2,<0.22.0
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
install_requires=[
"numpy>=1.16.0,<2.0.0",
"scipy>=1.2.0,<2.0.0",
"pandas>=0.24.0,<0.25.0",
"tqdm>=4.29.0,<5.0.0",
"pandas>=0.25.0,<0.26.0",
"tqdm>=4.33.0,<5.0.0",
"scikit-learn>=0.20.2,<0.22.0",
"torch>=1.1.0,<1.2.0",
"networkx>=2.2,<3.0",
Expand Down

0 comments on commit b0ad3f3

Please sign in to comment.