summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2020-09-30 16:02:43 -0500
committerJason Madden <jamadden@gmail.com>2020-09-30 16:02:43 -0500
commitf245e9c203f1b90bbebc6803966a87cc5fcbc49d (patch)
tree7bcee991b34654bc34cf3f02f44a81f50a48e286
parent4650c20cbba148fa480e9ff71a7cf209e8eb85b7 (diff)
downloadgreenlet-publish-changes.tar.gz
Drop 3.0, 3.1 and 3.2; they're no longer supported by setuptools.publish-changes
And restore the test_suite argument as that's currently required on Appveyor, even though its deprecated.
-rw-r--r--.travis.yml3
-rw-r--r--CHANGES.rst2
-rwxr-xr-xsetup.py9
3 files changed, 6 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 52ddfa7..58db234 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,9 +16,6 @@ matrix:
python: 2.7
dist: bionic
- arch: amd64
- python: 3.2
- dist: precise
- - arch: amd64
python: 3.3
dist: precise
- arch: arm64
diff --git a/CHANGES.rst b/CHANGES.rst
index fbfda42..1c7586b 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -9,6 +9,8 @@
- (Packaging) Stop asking setuptools to build both .tar.gz and .zip
sdists. PyPI has standardized on .tar.gz for all platforms.
- (Documentation) Publish the change log to https://greenlet.readthedocs.io
+- Drop support for Python 3.0, 3.1 and 3.2.
+
0.4.17 (2020-09-22)
===================
diff --git a/setup.py b/setup.py
index 222f0d2..19df822 100755
--- a/setup.py
+++ b/setup.py
@@ -91,9 +91,6 @@ setup(
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.0',
- 'Programming Language :: Python :: 3.1',
- 'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
@@ -108,6 +105,8 @@ setup(
'docs': [
'Sphinx',
]
- }
-
+ },
+ # XXX: This is deprecated. appveyor.yml still uses it though.
+ test_suite='tests.test_collector',
+ zip_safe=False,
)