1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

textproc/py-citeproc-py-styles: Unbreak

Python version comparison procedure thinks that
the version 2.6.2 is greater than 6.0.0 for some reason.

Reported by:	fallout
This commit is contained in:
Yuri Victorovich 2022-10-04 23:45:41 -07:00
parent a7bdad22b9
commit a7c2ddb5a2

View File

@ -0,0 +1,13 @@
- fix the problem that Python thinks that the version 2.6.2 is greater than 6.0.0 for pytest-runner
--- setup.py.orig 2022-10-05 06:44:42 UTC
+++ setup.py
@@ -27,7 +27,7 @@ for reqs in extras_require.values():
extras_require['all'].extend(reqs)
setup_requires = [
- 'pytest-runner>=2.6.2',
+ 'pytest-runner',
]
install_requires = [