summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-12-03 16:45:09 -0700
committerCharles Harris <charlesr.harris@gmail.com>2019-12-03 17:53:41 -0700
commitfbcb58ca2c17217f5dc85cb669ea651b7799b60c (patch)
treeca3354b604387d1b0b9dca307c84f59cb3e3fbf4 /setup.py
parentfdd8395f21a252373ff17fd43185c42e040c1b64 (diff)
downloadnumpy-fbcb58ca2c17217f5dc85cb669ea651b7799b60c.tar.gz
REL: Update master after 1.18.x branch.
Apart from the usual modifications, this - Removes a release note snippet added after towncrier was run - Removes testing on Python 3.5 as it is dropped for 1.19.x.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 46c95d6e6..43f9521b5 100755
--- a/setup.py
+++ b/setup.py
@@ -27,8 +27,8 @@ import subprocess
import textwrap
-if sys.version_info[:2] < (3, 5):
- raise RuntimeError("Python version >= 3.5 required.")
+if sys.version_info[:2] < (3, 6):
+ raise RuntimeError("Python version >= 3.6 required.")
import builtins
@@ -41,7 +41,6 @@ License :: OSI Approved
Programming Language :: C
Programming Language :: Python
Programming Language :: Python :: 3
-Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
@@ -56,7 +55,7 @@ Operating System :: MacOS
"""
MAJOR = 1
-MINOR = 18
+MINOR = 19
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)