Skip to content

Commit c9525da

Browse files
authored
Merge pull request #106 from matthewfeickert/bld/bump-min
BLD: Set minimum Python to 3.9
2 parents 592bc31 + 5725be0 commit c9525da

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGES
22
=======
33

4+
0.9.0 (20YY-MM-DD)
5+
------------------
6+
* Move support range to Python 3.9+, dropping support for all EOL Pythons.
7+
48
0.8.2 (2020-03-25)
59
------------------
610
* Future-proof Python support by making cython a build time dependency and

setup.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import glob
55
import os
66

7-
from setuptools import setup, Extension
7+
from setuptools import setup
88

99
from Cython.Build import cythonize
1010

@@ -22,14 +22,6 @@
2222
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
2323
'Programming Language :: Cython',
2424
'Programming Language :: Python',
25-
'Programming Language :: Python :: 2',
26-
'Programming Language :: Python :: 2.7',
27-
'Programming Language :: Python :: 3',
28-
'Programming Language :: Python :: 3.4',
29-
'Programming Language :: Python :: 3.5',
30-
'Programming Language :: Python :: 3.6',
31-
'Programming Language :: Python :: 3.7',
32-
'Programming Language :: Python :: 3.8',
3325
'Programming Language :: Python :: 3.9',
3426
'Programming Language :: Python :: 3.10',
3527
'Programming Language :: Python :: 3.11',
@@ -64,6 +56,6 @@
6456
"sources": LIBDATRIE_FILES,
6557
"include_dirs": [LIBDATRIE_DIR]})],
6658
ext_modules=ext_modules,
67-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
59+
python_requires=">=3.9",
6860
setup_requires=['Cython>=0.28'],
6961
tests_require=["pytest", "hypothesis"])

0 commit comments

Comments
 (0)