Skip to content

Commit

Permalink
Merge pull request #2061 from recommenders-team/andreas/fix_pandera
Browse files Browse the repository at this point in the history
Fix pandera in Python 3.7
  • Loading branch information
miguelgfierro committed Feb 12, 2024
2 parents 2c22f5e + f5a15c8 commit cd7c206
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
"cornac>=1.1.2,<1.15.2;python_version<='3.7'",
"cornac>=1.15.2,<2;python_version>='3.8'", # After 1.15.2, Cornac requires python 3.8
"retrying>=1.3.3",
"pandera[strategies]>=0.6.5", # For generating fake datasets
"pandera[strategies]>=0.6.5,<0.18;python_version<='3.7'", # For generating fake datasets
"pandera[strategies]>=0.6.5;python_version>='3.8'",
"scikit-surprise>=1.0.6",
"hyperopt>=0.1.2,<1",
"ipykernel>=4.6.1,<7",
Expand Down

0 comments on commit cd7c206

Please sign in to comment.