summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,
)