diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-14 20:22:53 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-28 22:44:00 +0000 |
commit | 0e05a3b4175353b559b0c47411c8c003c0dd4a14 (patch) | |
tree | 6212afedec720534e4f73f6345a90bf116bf0213 | |
parent | d12eccaa523fe24bdcc579f56f8b3ad416bfa1cf (diff) |
gnu: python-asdf: Update to 4.1.0.
* gnu/packages/astronomy.scm (python-asdf): Update to 4.1.0.
[arguments] <phases>: Remove 'patch-pyproject-toml.
[native-inputs]: Remove python-setuptools-scm; add
python-setuptools-scm-next.
Change-Id: Ice7068e715146c5cd49eca402d3f3434ab26ede7
-rw-r--r-- | gnu/packages/astronomy.scm | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 9af0bad5ed..a91bc5e523 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1663,26 +1663,18 @@ Main features: (define-public python-asdf (package (name "python-asdf") - (version "4.0.0") + (version "4.1.0") (source (origin (method url-fetch) (uri (pypi-uri "asdf" version)) (sha256 - (base32 "1nzrgsyidcynhgiqxy7pwny07prza1g6b7hs17ybg6fh9zas6kc6")))) + (base32 "189d282d8c3yyv5fk473rvfm5yra05zsn4lmkaynimszr294kx0g")))) (build-system pyproject-build-system) (arguments (list #:test-flags - #~(list "--numprocesses" (number->string (parallel-job-count))) - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'patch-pypojrect-toml - (lambda _ - (substitute* "pyproject.toml" - ;; TypeError: Configuration.__init__() got an unexpected - ;; keyword argument 'version_file' - (("version_file = \"asdf/_version.py\"") ""))))))) + #~(list "--numprocesses" (number->string (parallel-job-count))))) (native-inputs (list python-fsspec python-psutil @@ -1690,7 +1682,7 @@ Main features: python-pytest-doctestplus python-pytest-remotedata python-pytest-xdist - python-setuptools-scm + python-setuptools-scm-next python-wheel)) (propagated-inputs (list python-asdf-standard |