aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2024-01-19 02:19:30 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2024-01-19 02:22:37 +0000
commit81ac746a9c9260e5fad62147c65c4aaa0f7c087c (patch)
treeff8ee3711664f3e1c65799b083028cfc797436cf
parentdb99092cd81bc808e02d82d6501e326f1ab50343 (diff)
downloadports-81ac746a9c9260e5fad62147c65c4aaa0f7c087c.tar.gz
ports-81ac746a9c9260e5fad62147c65c4aaa0f7c087c.zip
math/py-pandas: Remove run-time dependency on cython
It is't required and it causes conflicts in other ports, particularly py-dwave-* ones. Approved by: portmgr (bugfix)
-rw-r--r--math/py-pandas/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/math/py-pandas/Makefile b/math/py-pandas/Makefile
index 5ac9e6e31f06..5541c45cc130 100644
--- a/math/py-pandas/Makefile
+++ b/math/py-pandas/Makefile
@@ -1,5 +1,6 @@
PORTNAME= pandas
PORTVERSION= 2.0.3
+PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= math devel python
MASTER_SITES= PYPI
@@ -11,13 +12,11 @@ WWW= https://pandas.pydata.org/
LICENSE= BSD3CLAUSE
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cython>=0.29.33<3:lang/cython@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}numpy>=1.23.2,1:math/py-numpy@${PY_FLAVOR} \
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.23.2,1:math/py-numpy@${PY_FLAVOR} \
${PY_SETUPTOOLS} \
${PYTHON_PKGNAMEPREFIX}versioneer>=0:devel/py-versioneer@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cython>=0.29.33<3:lang/cython@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}numpy>=1.23.2,1:math/py-numpy@${PY_FLAVOR} \
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.23.2,1:math/py-numpy@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}dateutil>=2.8.2:devel/py-dateutil@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytz>=2020.1,1:devel/py-pytz@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR} \