Skip to content

Commit 903ffc5

Browse files
authored
Simplify python version requirement (#765)
1 parent 9ac1796 commit 903ffc5

File tree

2 files changed

+2
-17
lines changed

2 files changed

+2
-17
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Aaron Ross <[email protected]>
77
Adam Endicott
88
Alex Stapleton <[email protected]>
9+
Alexandr Artemyev <[email protected]>
910
Alvaro Vega <[email protected]>
1011
Andrew Frankel
1112
Andrew Watts <[email protected]>

setup.py

+1-17
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,9 @@
88
import setuptools
99
import setuptools.command.test
1010

11-
try:
12-
import platform
13-
_pyimp = platform.python_implementation
14-
except (AttributeError, ImportError):
15-
def _pyimp():
16-
return 'Python'
17-
1811
NAME = 'django-celery-beat'
1912
PACKAGE = 'django_celery_beat'
2013

21-
E_UNSUPPORTED_PYTHON = f'{NAME} 1.0 requires %s %s or later!'
22-
23-
PYIMP = _pyimp()
24-
PY38_OR_LESS = sys.version_info < (3, 8)
25-
PYPY_VERSION = getattr(sys, 'pypy_version_info', None)
26-
PYPY24_ATLEAST = PYPY_VERSION and PYPY_VERSION >= (2, 4)
27-
28-
if PY38_OR_LESS and not PYPY24_ATLEAST:
29-
raise Exception(E_UNSUPPORTED_PYTHON % (PYIMP, '3.8'))
30-
3114
# -*- Classifiers -*-
3215

3316
classes = """
@@ -148,6 +131,7 @@ def run_tests(self):
148131
url=meta['homepage'],
149132
platforms=['any'],
150133
license='BSD',
134+
python_requires='>=3.8',
151135
install_requires=reqs('default.txt') + reqs('runtime.txt'),
152136
tests_require=reqs('test.txt') + reqs('test-django.txt'),
153137
cmdclass={'test': pytest},

0 commit comments

Comments
 (0)