diff options
Diffstat (limited to 'math/py-pyreadstat')
-rw-r--r-- | math/py-pyreadstat/Makefile | 4 | ||||
-rw-r--r-- | math/py-pyreadstat/distinfo | 6 | ||||
-rw-r--r-- | math/py-pyreadstat/files/patch-setup.py | 14 |
3 files changed, 5 insertions, 19 deletions
diff --git a/math/py-pyreadstat/Makefile b/math/py-pyreadstat/Makefile index a4fc50048746..d948c77b4952 100644 --- a/math/py-pyreadstat/Makefile +++ b/math/py-pyreadstat/Makefile @@ -1,5 +1,5 @@ PORTNAME= pyreadstat -PORTVERSION= 1.2.9 +PORTVERSION= 1.3.0 CATEGORIES= math python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,7 +17,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLA RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pandas>=1.2.0,1:math/py-pandas@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist concurrent cython pep517 +USE_PYTHON= autoplist concurrent cython3 pep517 post-install: ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} + diff --git a/math/py-pyreadstat/distinfo b/math/py-pyreadstat/distinfo index 0228375655b3..333820b5c423 100644 --- a/math/py-pyreadstat/distinfo +++ b/math/py-pyreadstat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1747715454 -SHA256 (pyreadstat-1.2.9.tar.gz) = bc4ff137b70013869727926867cf3c175ac56fd4e4a1d0e4317b559d8487ee4f -SIZE (pyreadstat-1.2.9.tar.gz) = 565303 +TIMESTAMP = 1751208170 +SHA256 (pyreadstat-1.3.0.tar.gz) = faddb9086797b24ff8f0540b8493ef5875620384e065a2d212f94295f69517a4 +SIZE (pyreadstat-1.3.0.tar.gz) = 566015 diff --git a/math/py-pyreadstat/files/patch-setup.py b/math/py-pyreadstat/files/patch-setup.py deleted file mode 100644 index ee04a6d9cc21..000000000000 --- a/math/py-pyreadstat/files/patch-setup.py +++ /dev/null @@ -1,14 +0,0 @@ ---- setup.py.orig 2024-10-18 20:21:39 UTC -+++ setup.py -@@ -26,11 +26,6 @@ if PY_MAJOR_VERSION < 3 and os.name == 'nt': - if PY_MAJOR_VERSION < 3 and os.name == 'nt': - raise Exception("Python 2 is not supported on Windows.") - --cyver = int(Cython.__version__.split(".")[0]) --if cyver < 3: -- msg = "Cython version 3 or newer required" -- raise Exception(msg) -- - ext = '.pyx' - - |