diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-12-03 16:45:09 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2019-12-03 17:53:41 -0700 |
commit | fbcb58ca2c17217f5dc85cb669ea651b7799b60c (patch) | |
tree | ca3354b604387d1b0b9dca307c84f59cb3e3fbf4 /setup.py | |
parent | fdd8395f21a252373ff17fd43185c42e040c1b64 (diff) | |
download | numpy-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-x | setup.py | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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) |