Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Oct 2022 15:19:29 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org
Subject:   git: 264edaa0316b - 2022Q4 - textproc/py-citeproc-py-styles: Unbreak
Message-ID:  <202210081519.298FJTTI026158@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch 2022Q4 has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=264edaa0316b95927defda0b51e3892ad85fb8c2

commit 264edaa0316b95927defda0b51e3892ad85fb8c2
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2022-10-05 06:45:41 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2022-10-08 15:19:24 +0000

    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
    
    (cherry picked from commit a7c2ddb5a20181f1835216965d25d526c9fcc50c)
---
 textproc/py-citeproc-py-styles/files/patch-setup.py | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/textproc/py-citeproc-py-styles/files/patch-setup.py b/textproc/py-citeproc-py-styles/files/patch-setup.py
new file mode 100644
index 000000000000..bcc2ddb8b4b9
--- /dev/null
+++ b/textproc/py-citeproc-py-styles/files/patch-setup.py
@@ -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 = [



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202210081519.298FJTTI026158>