summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2022-11-11 23:05:06 +0200
committerAlex Grönholm <alex.gronholm@nextday.fi>2022-11-11 23:05:06 +0200
commitf74a31315a68e9003c5347be35840cf9d0aeddf4 (patch)
tree3b0249aaa4ed1a2a79c09197f182d13f7ebae3da
parenta5e2cadb8a60ded5b57169e0c080782e976dc99b (diff)
downloadapscheduler-3.9.1.post1.tar.gz
Dropped Python 2.7 from the list of supported Python versions3.9.1.post1
Relates to #666.
-rw-r--r--setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index ab9fe8c..47d189c 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,6 @@ setup(
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
- 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
@@ -36,7 +35,7 @@ setup(
keywords='scheduling cron',
license='MIT',
packages=find_packages(exclude=['tests']),
- python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
+ python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
setup_requires=[
'setuptools_scm'
],