svn commit: r507225 - head/databases/py-tiledb

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Tue Jul 23 16:17:02 UTC 2019


Author: sunpoet
Date: Tue Jul 23 16:16:58 2019
New Revision: 507225
URL: https://svnweb.freebsd.org/changeset/ports/507225

Log:
  Drop python 2.7 support
  
  This port requires numpy<=1.16 for python 3.4 and below. Since we have py-numpy 1.16.4, drop python 2.7 support.
  
  from setup.py:
  numpy_required_version = 'numpy<=1.16' if sys.hexversion <0x3050000 else 'numpy>=1.7'

Modified:
  head/databases/py-tiledb/Makefile

Modified: head/databases/py-tiledb/Makefile
==============================================================================
--- head/databases/py-tiledb/Makefile	Tue Jul 23 16:16:53 2019	(r507224)
+++ head/databases/py-tiledb/Makefile	Tue Jul 23 16:16:58 2019	(r507225)
@@ -22,7 +22,7 @@ BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>=
 LIB_DEPENDS=	libtiledb.so:databases/tiledb
 RUN_DEPENDS=	${PYNUMPY}
 
-USES=		compiler:c++11-lang localbase python
-USE_PYTHON=	autoplist concurrent cython distutils
+USES=		compiler:c++11-lang localbase python:3.5+
+USE_PYTHON=	autoplist cython distutils
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list