Skip to content

Commit

Permalink
python3Packages.gensim: pin numpy to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
tobim committed Dec 17, 2024
1 parent cc3b592 commit c69bccb
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions pkgs/development/python-modules/gensim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
setuptools,
fetchFromGitHub,
mock,
numpy,
numpy_1,
scipy,
smart-open,
pyemd,
Expand Down Expand Up @@ -34,13 +34,13 @@ buildPythonPackage rec {

build-system = [
cython
oldest-supported-numpy
(oldest-supported-numpy.override { numpy = numpy_1; })
setuptools
];

dependencies = [
smart-open
numpy
numpy_1
scipy
];

Expand All @@ -50,9 +50,7 @@ buildPythonPackage rec {
pytestCheckHook
];

pythonRelaxDeps = [
"scipy"
];
pythonRelaxDeps = [ "scipy" ];

pythonImportsCheck = [ "gensim" ];

Expand Down

0 comments on commit c69bccb

Please sign in to comment.