guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 5463780f670a63e1bbe2509e56396ed0a0734885
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Dec 19 08:59:09 2025 +0000
gnu: python-eventio: Update to 2.1.0.
* gnu/packages/astronomy.scm (python-eventio): Update to 2.1.0.
[arguments] <phases>: Remove 'relax-gcc-14-strictness.
Change-Id: I8cad66ef889b2f7f72acc943a354bd1469d2d3ac
---
gnu/packages/astronomy.scm | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 1f344c7055..05c7bbc506 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -4636,7 +4636,7 @@ tools for astronomers.")
(define-public python-eventio
(package
(name "python-eventio")
- (version "2.0.0")
+ (version "2.1.0")
(source
(origin
(method git-fetch)
@@ -4645,22 +4645,16 @@ tools for astronomers.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "10d2gmniwrljwgrs936v06gf5biz6h5zsjrc6kqk9qb1rcrb6gpw"))))
+ (base32 "0g548pca43iwpq1641w3jzrb3rk2kqjf5gcjbcymfpdif1982zv2"))))
(build-system pyproject-build-system)
(arguments
(list
+ ;; tests: 163 passed, 3 skipped, 4 xfailed
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'set-env-version
(lambda _
- (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))
- (add-before 'build 'relax-gcc-14-strictness
- (lambda _
- (setenv "CFLAGS" (string-join
- (list "-g" "-O2"
-
"-Wno-error=implicit-function-declaration"
- "-Wno-error=int-conversion")
- " ")))))))
+ (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version))))))
(native-inputs
(list python-cython
python-numpy