diff options
Diffstat (limited to 'gnu/packages/astronomy.scm')
-rw-r--r-- | gnu/packages/astronomy.scm | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index e5a38226be..5ab59035b4 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -9218,6 +9218,9 @@ using (multivariate) polynomials.") #:build-backend "setuptools.build_meta" #:test-flags #~(list "--numprocesses" (number->string (parallel-job-count)) + ;; Failed: 'yield' keyword is allowed in fixtures, but not in + ;; tests (test_recipe) + "--ignore=doc/source/cookbook/tests/test_cookbook.py" "-k" (string-join ;; Tests requiring networking. (list "not test_load_sample_timeout" @@ -9227,7 +9230,10 @@ using (multivariate) polynomials.") "test_registry_byte_size_dtype" "test_registry_byte_size_sign" ;; AssertionError: Arrays are not equal - "test_field_cut_off_axis_octree") + "test_field_cut_off_axis_octree" + ;; UserWarning: pkg_resources is deprecated as an + ;; API + "test_glue_data_object") " and not ")) #:phases #~(modify-phases %standard-phases @@ -9303,13 +9309,13 @@ using (multivariate) polynomials.") (define-public python-yt-astro-analysis (package (name "python-yt-astro-analysis") - (version "1.1.3") + (version "1.1.4") (source (origin (method url-fetch) (uri (pypi-uri "yt_astro_analysis" version)) (sha256 - (base32 "1fb3sdp6hq2c4c28pd33v9yj14x9l7qizf3y3qpl594qdq1ffmpi")))) + (base32 "0dy96084wvb7ccnnp22b6wacyjzn1n62i4mwq0q7nkp90bzx44a2")))) (build-system pyproject-build-system) (arguments (list @@ -9324,9 +9330,7 @@ using (multivariate) polynomials.") (native-inputs (list python-cython python-pytest - python-setuptools - python-tomli - python-wheel)) + python-setuptools)) (propagated-inputs (list python-h5py python-numpy |