me
/
guix
Archived
1
0
Fork 0

gnu: python-omegaconf: Fix build system errors.

* gnu/packages/python-xyz.scm (python-omegaconf)[arguments]: Fix syntax error
in version specification; do not trigger errors on deprecation warnings.

Change-Id: Ida873c11255ffb65d888378cdd77a9205163016a
master
Ricardo Wurmus 2024-04-21 19:34:38 +02:00
parent a78de8f792
commit c0c713be66
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 5 additions and 2 deletions

View File

@ -17579,8 +17579,11 @@ config files.")
(add-after 'unpack 'loosen-requirements
(lambda _
(substitute* "requirements/base.txt"
(("antlr4-python3-runtime==")
"antlr4-python3-runtime>=")))))))
(("antlr4-python3-runtime==.*")
"antlr4-python3-runtime >=4.9\n"))
;; Ignore deprecation warnings.
(substitute* "pyproject.toml"
(("-Werror") "")))))))
(propagated-inputs (list java-antlr4-runtime-python
python-pydevd
python-pyyaml))