diff options
-rw-r--r-- | gnu/packages/python-xyz.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0a2cf0f315..2fbd921a2d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29541,14 +29541,14 @@ validation testing and application logic.") (define-public python-numba (package (name "python-numba") - (version "0.59.1") + (version "0.61.0") (source (origin (method url-fetch) (uri (pypi-uri "numba" version)) (sha256 (base32 - "02rp5x59kw3qw6x821d4k4r4x8r8qpl1a16j9rvx4a30p4r93xkn")))) + "09grslc9ij1ry94c5yz10rvf0w29vn7pwilijphrj20np24jx3c8")))) (build-system pyproject-build-system) (arguments (list @@ -29597,9 +29597,8 @@ validation testing and application logic.") "int(platform.machine()[len('armv'):-1]) >= 7"))))) (#t '())))) (replace 'check - (lambda* (#:key tests? inputs outputs #:allow-other-keys) + (lambda* (#:key tests? #:allow-other-keys) (when tests? - (add-installed-pythonpath inputs outputs) ;; Something is wrong with the PYTHONPATH when running the ;; tests from the build directory, as it complains about not being ;; able to import certain modules. |