Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Jul 2019 16:16:58 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r507225 - head/databases/py-tiledb
Message-ID:  <201907231616.x6NGGwU5039514@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907231616.x6NGGwU5039514>