Skip to content

Commit

Permalink
Pin scipy in installation requirements as well to fix failing tests
Browse files Browse the repository at this point in the history
This completes the version pinning of scipy started in afbb82e

The tests are currently failing because the build system runs the test against scipy==1.14.0 which doesn't have the required sparsetools (csc_matvecs, specifically) anymore. This commit makes sure that gensim also doesn't test against a version higher than 1.13.1.
  • Loading branch information
Crosswind authored Jul 18, 2024
1 parent afbb82e commit 1008c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def run(self):

install_requires = [
NUMPY_STR,
'scipy >= 1.7.0',
'scipy >= 1.7.0, <= 1.13.1',
'smart_open >= 1.8.1',
]

Expand Down

0 comments on commit 1008c13

Please sign in to comment.