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: Ida873c11255ffb65d888378cdd77a9205163016amaster
parent
a78de8f792
commit
c0c713be66
|
@ -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))
|
||||
|
|
Reference in New Issue