From b1766282067f4bd23e93891afe883636fb38831c Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 2 Sep 2021 07:36:20 -0400 Subject: [PATCH] Drop 3.7 support from install script Resolves #232 --- newsfragments/232.removal | 1 + setup.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 newsfragments/232.removal diff --git a/newsfragments/232.removal b/newsfragments/232.removal new file mode 100644 index 0000000..728caee --- /dev/null +++ b/newsfragments/232.removal @@ -0,0 +1 @@ +Drop Python 3.7 support in preparation for supporting 3.9+ syntax. diff --git a/setup.py b/setup.py index a7e94bf..b7a4610 100755 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ setup( ], tests_require=['pytest'], - python_requires=">=3.7", + python_requires=">=3.8", keywords=[ 'trio', "async", @@ -71,7 +71,6 @@ setup( "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Intended Audience :: Science/Research",