diff options
author | Michael Howitz <mh@gocept.com> | 2023-03-27 11:12:58 +0200 |
---|---|---|
committer | Michael Howitz <mh@gocept.com> | 2023-03-27 11:12:58 +0200 |
commit | 6093ae96ca5323330a4605c8426551470c3b8e70 (patch) | |
tree | 93e912f425983bc56162162235a3b1b559c98da1 | |
parent | baab811cdb2cf88abbd26443e07aff87ebe55d9b (diff) | |
download | zope-contenttype-6093ae96ca5323330a4605c8426551470c3b8e70.tar.gz |
Drop support for deprecated `python setup.py test` + add python_requires.
-rw-r--r-- | CHANGES.rst | 2 | ||||
-rw-r--r-- | setup.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index c90de35..d296779 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,8 @@ - Drop support for Python 2.7, 3.5, 3.6. +- Drop support for deprecated ``python setup.py test``. + 4.6 (2022-09-07) ================ @@ -65,9 +65,8 @@ setup( packages=find_packages('src'), package_dir={'': 'src'}, namespace_packages=['zope', ], + python_requires='>=3.7', install_requires=['setuptools'], - test_suite='zope.contenttype', - tests_require=TESTS_REQUIRE, extras_require={ 'test': TESTS_REQUIRE, 'docs': [ |