Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Dec 2020 09:03:39 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r559053 - in head: benchmarks/py-naarad benchmarks/py-zopkio biology/checkm biology/groopm comms/apitran devel/cpp2py math/py-CyLP math/py-apgl math/py-chaospy math/py-cvxpy math/py-cyi...
Message-ID:  <202012240903.0BO93dgX043281@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Thu Dec 24 09:03:39 2020
New Revision: 559053
URL: https://svnweb.freebsd.org/changeset/ports/559053

Log:
  scipy 1.5.4 is only compatible with python 3.6+
  
  Reported by:	pkg-fallout

Modified:
  head/benchmarks/py-naarad/Makefile
  head/benchmarks/py-zopkio/Makefile
  head/biology/checkm/Makefile
  head/biology/groopm/Makefile
  head/comms/apitran/Makefile
  head/devel/cpp2py/Makefile
  head/math/py-CyLP/Makefile
  head/math/py-apgl/Makefile
  head/math/py-chaospy/Makefile
  head/math/py-cvxpy/Makefile
  head/math/py-cyipopt/Makefile
  head/math/py-ecos/Makefile
  head/math/py-fastcluster/Makefile
  head/math/py-keras/Makefile
  head/math/py-luminol/Makefile
  head/math/py-osqp/Makefile
  head/math/py-scikit-umfpack/Makefile
  head/math/py-scs/Makefile
  head/math/py-statsmodels010/Makefile
  head/math/py-theano/Makefile
  head/misc/py-eemeter/Makefile
  head/misc/py-scikit-fusion/Makefile
  head/ports-mgmt/porttree/Makefile
  head/science/dvc/Makefile
  head/science/py-GPy/Makefile
  head/science/py-GPyOpt/Makefile
  head/science/py-paramz/Makefile
  head/science/py-pysal/Makefile
  head/science/py-qspin/Makefile
  head/science/py-rmsd/Makefile
  head/science/py-scikit-sparse/Makefile
  head/science/py-scipy/Makefile
  head/science/py-scoria/Makefile
  head/science/pybrain/Makefile

Modified: head/benchmarks/py-naarad/Makefile
==============================================================================
--- head/benchmarks/py-naarad/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/benchmarks/py-naarad/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -19,7 +19,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytz>=2013.8,1:dev
 	bash:shells/bash \
 	gawk:lang/gawk
 
-USES=		shebangfix python
+USES=		shebangfix python:3.6+
 
 SHEBANG_LANG=	gawk
 SHEBANG_FILES=	bin/naarad_metric_collector.sh bin/PrintGCStats

Modified: head/benchmarks/py-zopkio/Makefile
==============================================================================
--- head/benchmarks/py-zopkio/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/benchmarks/py-zopkio/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -18,7 +18,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}naarad>=1.0.15:ben
 	${PYTHON_PKGNAMEPREFIX}paramiko>=1.10.1:security/py-paramiko@${PY_FLAVOR} \
 	${PYTHON_PKGNAMEPREFIX}junit-xml>0:textproc/py-junit-xml@${PY_FLAVOR} \
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	autoplist concurrent distutils
 USE_GITHUB=	yes
 GH_ACCOUNT=	linkedin

Modified: head/biology/checkm/Makefile
==============================================================================
--- head/biology/checkm/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/biology/checkm/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -17,7 +17,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}pysam>=0.8.3:biology/py-pysam@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0.9.0:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_GITHUB=	yes
 GH_ACCOUNT=	Ecogenomics
 USE_PYTHON=	distutils noflavors autoplist

Modified: head/biology/groopm/Makefile
==============================================================================
--- head/biology/groopm/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/biology/groopm/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -17,7 +17,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0.10.1:science/py-scipy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}tables>=2.3:devel/py-tables@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	distutils noflavors autoplist
 
 NO_ARCH=	yes

Modified: head/comms/apitran/Makefile
==============================================================================
--- head/comms/apitran/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/comms/apitran/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -19,7 +19,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-tool
 		sox:audio/sox \
 		display:graphics/ImageMagick6
 
-USES=		python:run shebangfix
+USES=		python:3.6+,run shebangfix
 USE_GITHUB=	yes
 GH_ACCOUNT=	rsj56
 GH_PROJECT=	apitran

Modified: head/devel/cpp2py/Makefile
==============================================================================
--- head/devel/cpp2py/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/devel/cpp2py/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -22,7 +22,7 @@ BUILD_DEPENDS=	${PY_DEPENDS} \
 RUN_DEPENDS=	${PY_DEPENDS} \
 		llvm${LLVM_VER}>0:devel/llvm${LLVM_VER}
 
-USES=		cmake compiler:c++14-lang gettext-runtime python shebangfix
+USES=		cmake compiler:c++14-lang gettext-runtime python:3.6+ shebangfix
 USE_LDCONFIG=	yes
 
 USE_GITHUB=	yes

Modified: head/math/py-CyLP/Makefile
==============================================================================
--- head/math/py-CyLP/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-CyLP/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -24,7 +24,7 @@ LIB_DEPENDS=	libblas.so:math/blas \
 		liblapack.so:math/lapack
 RUN_DEPENDS=	${PY_DEPENDS}
 
-USES=		compiler:c++11-lang python
+USES=		compiler:c++11-lang python:3.6+
 USE_PYTHON=	distutils cython autoplist
 
 USE_GITHUB=	yes

Modified: head/math/py-apgl/Makefile
==============================================================================
--- head/math/py-apgl/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-apgl/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -17,7 +17,7 @@ BUILD_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>0.7.0:science/py-scipy@${PY_FLAVOR}
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	autoplist distutils
 
 .include <bsd.port.mk>

Modified: head/math/py-chaospy/Makefile
==============================================================================
--- head/math/py-chaospy/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-chaospy/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -16,7 +16,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}numpoly>0:math/py-numpoly@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	distutils autoplist
 
 NO_ARCH=	yes

Modified: head/math/py-cvxpy/Makefile
==============================================================================
--- head/math/py-cvxpy/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-cvxpy/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -19,7 +19,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=1.1.0:science/py-scipy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}scs>=1.1.6:math/py-scs@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	distutils autoplist
 
 post-install:

Modified: head/math/py-cyipopt/Makefile
==============================================================================
--- head/math/py-cyipopt/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-cyipopt/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -22,7 +22,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
 
-USES=		fortran python pkgconfig # fortran because ipopt's pkg-config returns gcc libs
+USES=		fortran python:3.6+ pkgconfig # fortran because ipopt's pkg-config returns gcc libs
 USE_GITHUB=	yes
 GH_ACCOUNT=	matthias-k
 USE_PYTHON=	distutils cython autoplist

Modified: head/math/py-ecos/Makefile
==============================================================================
--- head/math/py-ecos/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-ecos/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -18,7 +18,7 @@ BUILD_DEPENDS=	${PYNUMPY}
 RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0.9:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	distutils autoplist
 
 .include <bsd.port.mk>

Modified: head/math/py-fastcluster/Makefile
==============================================================================
--- head/math/py-fastcluster/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-fastcluster/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -17,7 +17,7 @@ BUILD_DEPENDS=	${PYNUMPY}
 RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	autoplist concurrent distutils
 
 PORTDOCS=	CITATION.txt INSTALL.txt NEWS.txt README.txt

Modified: head/math/py-keras/Makefile
==============================================================================
--- head/math/py-keras/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-keras/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -22,7 +22,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}theano>=0.8.0:math/py-theano@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	autoplist distutils
 
 NO_ARCH=	yes

Modified: head/math/py-luminol/Makefile
==============================================================================
--- head/math/py-luminol/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-luminol/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -16,7 +16,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \
 	${PYTHON_PKGNAMEPREFIX}numpy>=1.6.2,1:math/py-numpy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	autoplist distutils
 USE_GITHUB=	yes
 GH_ACCOUNT=	linkedin

Modified: head/math/py-osqp/Makefile
==============================================================================
--- head/math/py-osqp/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-osqp/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -18,7 +18,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0.13.2:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_GITHUB=	yes
 GH_ACCOUNT=	oxfordcontrol
 GH_PROJECT=	${PORTNAME}-python

Modified: head/math/py-scikit-umfpack/Makefile
==============================================================================
--- head/math/py-scikit-umfpack/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-scikit-umfpack/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -20,7 +20,7 @@ LIB_DEPENDS=	libumfpack.so:math/suitesparse
 RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	distutils cython autoplist
 
 post-extract: # workaround for https://github.com/scikit-umfpack/scikit-umfpack/issues/53

Modified: head/math/py-scs/Makefile
==============================================================================
--- head/math/py-scs/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-scs/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -15,7 +15,7 @@ BUILD_DEPENDS=	${PYNUMPY}
 RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0.13.2:science/py-scipy@${PY_FLAVOR}
 
-USES=		python blaslapack:openblas fortran # fortran is for openblas
+USES=		python:3.6+ blaslapack:openblas fortran # fortran is for openblas
 USE_PYTHON=	distutils autoplist
 
 CONFIGURE_ENV=	BLAS_LAPACK_LIBS="openblas"

Modified: head/math/py-statsmodels010/Makefile
==============================================================================
--- head/math/py-statsmodels010/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-statsmodels010/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -20,7 +20,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}patsy>=0.4.0:math/py-patsy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0.18:science/py-scipy@${PY_FLAVOR}
 
-USES=		python shebangfix
+USES=		python:3.6+ shebangfix
 USE_PYTHON=	autoplist concurrent cython distutils
 
 # statsmodels 0.11.0+ requires Python 3.5+

Modified: head/math/py-theano/Makefile
==============================================================================
--- head/math/py-theano/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/math/py-theano/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -18,7 +18,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0.8.0:science/py-scipy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR}
 
-USES=		compiler:openmp python
+USES=		compiler:openmp python:3.6+
 USE_PYTHON=	concurrent distutils autoplist
 
 NO_ARCH=	yes

Modified: head/misc/py-eemeter/Makefile
==============================================================================
--- head/misc/py-eemeter/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/misc/py-eemeter/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -16,7 +16,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>0:devel/py-c
 		${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-pandas@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_GITHUB=	yes # PyPI doesn't have the latest version for some reason
 GH_ACCOUNT=	openeemeter
 USE_PYTHON=	distutils concurrent autoplist

Modified: head/misc/py-scikit-fusion/Makefile
==============================================================================
--- head/misc/py-scikit-fusion/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/misc/py-scikit-fusion/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -17,7 +17,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}joblib>=0.8.4:devel/py-joblib@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0.12.0:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	autoplist distutils
 NO_ARCH=	yes
 

Modified: head/ports-mgmt/porttree/Makefile
==============================================================================
--- head/ports-mgmt/porttree/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/ports-mgmt/porttree/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -15,7 +15,7 @@ LICENSE=	MIT
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}networkx>=2.0:math/py-networkx@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}configargparse>0:devel/py-configargparse@${PY_FLAVOR}
 
-USES=		python tar:bzip2 shebangfix
+USES=		python:3.6+ tar:bzip2 shebangfix
 #USE_PYTHON=	concurrent
 
 SVN_REV=	114

Modified: head/science/dvc/Makefile
==============================================================================
--- head/science/dvc/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/dvc/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -30,7 +30,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}appdirs>=1.4.3:dev
 		${PYTHON_PKGNAMEPREFIX}schema>=0.6.7:devel/py-schema@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}zclockfile>0:devel/py-zclockfile@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	distutils autoplist noflavors
 
 NO_ARCH=	yes

Modified: head/science/py-GPy/Makefile
==============================================================================
--- head/science/py-GPy/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/py-GPy/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -19,7 +19,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}paramz>=0.9.0:science/py-paramz@${PY_FLAVOR}
 
-USES=		localbase python
+USES=		localbase python:3.6+
 USE_PYTHON=	distutils autoplist
 
 .include <bsd.port.mk>

Modified: head/science/py-GPyOpt/Makefile
==============================================================================
--- head/science/py-GPyOpt/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/py-GPyOpt/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -16,7 +16,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0.16:science/py-scipy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}GPy>=1.8:science/py-GPy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	distutils concurrent autoplist
 
 NO_ARCH=	yes

Modified: head/science/py-paramz/Makefile
==============================================================================
--- head/science/py-paramz/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/py-paramz/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -18,7 +18,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	distutils autoplist
 
 NO_ARCH=	yes

Modified: head/science/py-pysal/Makefile
==============================================================================
--- head/science/py-pysal/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/py-pysal/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -21,7 +21,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>=0.11:science/py-scipy@${PY_FLAVOR}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	autoplist concurrent distutils
 
 NO_ARCH=	yes

Modified: head/science/py-qspin/Makefile
==============================================================================
--- head/science/py-qspin/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/py-qspin/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -14,7 +14,7 @@ LICENSE=	MIT
 RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	autoplist distutils
 
 NO_ARCH=	yes

Modified: head/science/py-rmsd/Makefile
==============================================================================
--- head/science/py-rmsd/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/py-rmsd/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -14,7 +14,7 @@ LICENSE=	BSD2CLAUSE
 RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	distutils autoplist concurrent
 
 .include <bsd.port.mk>

Modified: head/science/py-scikit-sparse/Makefile
==============================================================================
--- head/science/py-scikit-sparse/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/py-scikit-sparse/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -18,7 +18,7 @@ RUN_DEPENDS=	${PYNUMPY} \
 BUILD_DEPENDS=	${RUN_DEPENDS}
 LIB_DEPENDS=	libumfpack.so:math/suitesparse
 
-USES=		fortran python
+USES=		fortran python:3.6+
 USE_PYTHON=	distutils cython autoplist
 
 CFLAGS+=	-I${LOCALBASE}/include/suitesparse

Modified: head/science/py-scipy/Makefile
==============================================================================
--- head/science/py-scipy/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/py-scipy/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -24,7 +24,7 @@ BUILD_DEPENDS=	${PYNUMPY} \
 LIB_DEPENDS=	libblas.so:math/blas
 RUN_DEPENDS=	${PYNUMPY}
 
-USES=		blaslapack:openblas fortran python shebangfix
+USES=		blaslapack:openblas fortran python:3.6+ shebangfix
 USE_PYTHON=	autoplist concurrent distutils
 
 FFLAGS+=	-std=legacy

Modified: head/science/py-scoria/Makefile
==============================================================================
--- head/science/py-scoria/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/py-scoria/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -14,7 +14,7 @@ LICENSE=	APACHE20
 RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR}
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	autoplist distutils
 NO_ARCH=	yes
 

Modified: head/science/pybrain/Makefile
==============================================================================
--- head/science/pybrain/Makefile	Thu Dec 24 08:57:55 2020	(r559052)
+++ head/science/pybrain/Makefile	Thu Dec 24 09:03:39 2020	(r559053)
@@ -15,7 +15,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}scipy>=0.7.1:scien
 
 USE_GITHUB=	yes
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	autoplist distutils concurrent optsuffix
 
 .include <bsd.port.mk>



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