git: 8275240cea1d - main - devel/py-tinyarray: limit supported python versions

From: Dmitry Marakasov <amdmi3_at_FreeBSD.org>
Date: Mon, 01 Nov 2021 13:59:55 UTC
The branch main has been updated by amdmi3:

URL: https://cgit.FreeBSD.org/ports/commit/?id=8275240cea1d2e787f33aaa3793efe913c6132d2

commit 8275240cea1d2e787f33aaa3793efe913c6132d2
Author:     Dmitry Marakasov <amdmi3@FreeBSD.org>
AuthorDate: 2021-10-28 13:25:00 +0000
Commit:     Dmitry Marakasov <amdmi3@FreeBSD.org>
CommitDate: 2021-11-01 13:59:07 +0000

    devel/py-tinyarray: limit supported python versions
    
    src/array.cc:848:12: error: no matching function for call to '_Py_HashDouble'
        return _Py_HashDouble(x);
    
    Approved by:    portmgr blanket
---
 devel/py-tinyarray/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devel/py-tinyarray/Makefile b/devel/py-tinyarray/Makefile
index f9605144f7bd..e3cf3f3fe58b 100644
--- a/devel/py-tinyarray/Makefile
+++ b/devel/py-tinyarray/Makefile
@@ -13,7 +13,7 @@ LICENSE=	BSD2CLAUSE
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR}
 
-USES=		python:3.6+
+USES=		python:3.6-3.9
 USE_PYTHON=	autoplist distutils
 
 .include <bsd.port.mk>