diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2021-10-28 11:37:27 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2021-10-28 11:46:09 +0000 |
commit | 1c5aeb0d52ca049ca68c5df1a47ce45d8726d5cc (patch) | |
tree | 80c46e6d81275cdecec26eb6bee575ea8888b571 | |
parent | e27c8729efed67457dd1a91bcaced066daec1b0f (diff) |
devel/py-meliae: limit supported python versions
meliae/_scanner.c:3388:46: error: use of undeclared identifier 'PyGC_Head'
__pyx_t_1 = __Pyx_PyInt_FromSize_t((sizeof(PyGC_Head))); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 52, __pyx_L1_error)
Approved by: portmgr blanket
-rw-r--r-- | devel/py-meliae/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/py-meliae/Makefile b/devel/py-meliae/Makefile index 1584db6c19f3..44c8fd36a90a 100644 --- a/devel/py-meliae/Makefile +++ b/devel/py-meliae/Makefile @@ -12,7 +12,7 @@ LICENSE= GPLv3 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} -USES= python:3.6+ +USES= python:3.6-3.8 USE_PYTHON= distutils autoplist cython TEST_TARGET= check # test fails |