[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/21: gnu: python-scikit-fem: Update to 10.0.2.
From: |
guix-commits |
Subject: |
15/21: gnu: python-scikit-fem: Update to 10.0.2. |
Date: |
Thu, 7 Nov 2024 17:09:01 -0500 (EST) |
sharlatan pushed a commit to branch python-team
in repository guix.
commit 1fc9828fcc2dc6ad57dbcbbf0fa84260c7a7a4b3
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Thu Nov 7 20:39:22 2024 +0000
gnu: python-scikit-fem: Update to 10.0.2.
* gnu/packages/python-science.scm (python-scikit-fem): Update to
10.0.2. Improve style.
[arguments]<test-flags>: Skip some failing tests.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I4efe9f0e93d315c7b979bf3160fa5a3a97ab2115
---
gnu/packages/python-science.scm | 36 ++++++++++++++++++++++++------------
1 file changed, 24 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index f2be82fb42..7475c7028c 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -440,23 +440,35 @@ CMake.")
(define-public python-scikit-fem
(package
(name "python-scikit-fem")
- (version "9.0.1")
- (source (origin
- (method git-fetch) ; no tests in PyPI
- (uri (git-reference
- (url "https://github.com/kinnala/scikit-fem")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1r1c88rbaa7vjfnljbzx8paf36yzpy33bragl99ykn6i2srmjrd4"))))
+ (version "10.0.2")
+ (source
+ (origin
+ (method git-fetch) ; no tests in PyPI
+ (uri (git-reference
+ (url "https://github.com/kinnala/scikit-fem")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "10kvzm4fmazsrddd83m0903wan67fkj13vdp6w1iw6wm6a0b5h28"))))
(build-system pyproject-build-system)
- (propagated-inputs (list python-meshio python-numpy python-scipy))
+ (arguments
+ (list
+ #:test-flags #~(list
+ ;; Tests require Jax.
+ "--ignore=tests/test_autodiff.py"
+ "--ignore=tests/test_examples.py")))
(native-inputs
(list python-autograd
python-pyamg
+ ;; python-jax ; not packed yet
python-pytest
- python-shapely))
+ python-shapely
+ python-setuptools
+ python-wheel))
+ (propagated-inputs
+ (list python-meshio
+ python-numpy
+ python-scipy))
(home-page "https://scikit-fem.readthedocs.io/en/latest/")
(synopsis "Library for performing finite element assembly")
(description
- branch python-team updated (15691c5f98 -> f0c0daeb51), guix-commits, 2024/11/07
- 04/21: gnu: python-nose-exclude: Adjust iputs., guix-commits, 2024/11/07
- 01/21: gnu: python-ewah-bool-utils: Update to 1.2.2., guix-commits, 2024/11/07
- 06/21: gnu: python-yt: Adjust inputs., guix-commits, 2024/11/07
- 09/21: gnu: python-pytest-shutil: Update to 1.8.0., guix-commits, 2024/11/07
- 03/21: gnu: python-pyerfa: Adjust inputs., guix-commits, 2024/11/07
- 05/21: gnu: python-unyt: Adjust inputs., guix-commits, 2024/11/07
- 02/21: gnu: python-cmyt: Adjust inputs., guix-commits, 2024/11/07
- 15/21: gnu: python-scikit-fem: Update to 10.0.2.,
guix-commits <=
- 17/21: gnu: python-orthopy: Adjust inputs., guix-commits, 2024/11/07
- 07/21: gnu: python-yt-astro-analysis: Adjust inputs., guix-commits, 2024/11/07
- 08/21: gnu: python-pytest-openfiles: Adjust inputs., guix-commits, 2024/11/07
- 10/21: gnu: python-pytest-virtualenv: Update to 1.8.0., guix-commits, 2024/11/07
- 13/21: gnu: python-soxs: Adjust inputs., guix-commits, 2024/11/07
- 14/21: gnu: python-robotframework-datadriver: Update to 1.11.2., guix-commits, 2024/11/07
- 11/21: gnu: python-sgp4: Adjust inputs., guix-commits, 2024/11/07
- 12/21: gnu: python-skyfield: Adjust inputs., guix-commits, 2024/11/07
- 16/21: gnu: python-cplot: Adjust inputs., guix-commits, 2024/11/07
- 18/21: gnu: python-accupy: Adjust inputs., guix-commits, 2024/11/07