gnu: python-orjson: Fix version string of Python module.
* gnu/packages/python-xyz.scm (python-orjson)[arguments]: Remove invalid characters from version string.
This commit is contained in:
parent
351d193eb1
commit
d67a3622ef
1 changed files with 1 additions and 2 deletions
|
@ -2848,10 +2848,9 @@ requires = ['setuptools']
|
||||||
(call-with-output-file "setup.cfg"
|
(call-with-output-file "setup.cfg"
|
||||||
(lambda (port)
|
(lambda (port)
|
||||||
(format port "\
|
(format port "\
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
name = orjson
|
name = orjson
|
||||||
version = '~a'
|
version = ~a
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
packages = find:
|
packages = find:
|
||||||
|
|
Reference in a new issue