[yt-svn] commit/yt: 2 new changesets

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Fri Dec 8 09:55:12 PST 2017


2 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/fff9ab4a6db8/
Changeset:   fff9ab4a6db8
User:        ngoldbaum
Date:        2017-12-04 21:19:05+00:00
Summary:     add python_requires to yt's setup() invocation
Affected #:  1 file

diff -r befe05adfea96a3285199c09543b6c22295d946f -r fff9ab4a6db84310af229b630caa15ce91ab4c09 setup.py
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@
 import pkg_resources
 
 
-if sys.version_info < (2, 7) or (3, 0) < sys.version_info < (3, 3):
+if sys.version_info < (2, 7) or (3, 0) < sys.version_info < (3, 4):
     print("yt currently supports Python 2.7 or versions newer than Python 3.4")
     print("certain features may fail unexpectedly and silently with older "
           "versions.")
@@ -401,4 +401,5 @@
     zip_safe=False,
     scripts=["scripts/iyt"],
     ext_modules=cython_extensions + extensions,
+    python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*'
 )


https://bitbucket.org/yt_analysis/yt/commits/e9e81b4fca00/
Changeset:   e9e81b4fca00
User:        ngoldbaum
Date:        2017-12-08 17:54:32+00:00
Summary:     Merge pull request #1640 from ngoldbaum/python-requires

Add python_requires to yt's setup() invocation
Affected #:  1 file

diff -r 07a5a134b8c8db35b7380e58d5fd94bcce813e5a -r e9e81b4fca00670c5e2d5cf91829479e32aa44bb setup.py
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@
 import pkg_resources
 
 
-if sys.version_info < (2, 7) or (3, 0) < sys.version_info < (3, 3):
+if sys.version_info < (2, 7) or (3, 0) < sys.version_info < (3, 4):
     print("yt currently supports Python 2.7 or versions newer than Python 3.4")
     print("certain features may fail unexpectedly and silently with older "
           "versions.")
@@ -401,4 +401,5 @@
     zip_safe=False,
     scripts=["scripts/iyt"],
     ext_modules=cython_extensions + extensions,
+    python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*'
 )

Repository URL: https://bitbucket.org/yt_analysis/yt/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.



More information about the yt-svn mailing list