Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3201050

Browse files
Merge pull request #76 from ThomasWaldmann/py312
Py312
2 parents fd33175 + 39555c1 commit 3201050

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11-dev"]
14+
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
1515
os: [ubuntu-20.04]
1616

1717
steps:

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ def main():
130130
'Programming Language :: Python :: 3.9',
131131
'Programming Language :: Python :: 3.10',
132132
'Programming Language :: Python :: 3.11',
133+
'Programming Language :: Python :: 3.12',
133134
'Topic :: Software Development :: Libraries :: Python Modules',
134135
'Topic :: System :: Filesystems',
135136
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
@@ -223,7 +224,7 @@ def run(self):
223224

224225
hit = re.match('^Cython version (.+)$', version)
225226
if not hit or LooseVersion(hit.group(1)) < "0.29":
226-
# in fact, we need a very recent Cython version (like 0.29.21) to support py39
227+
# in fact, we need a very recent Cython version to support the latest pythons
227228
raise SystemExit('Need Cython 0.29 or newer, found ' + version)
228229

229230
cmd = ['cython', '-Wextra', '--force', '-3', '--fast-fail',

0 commit comments

Comments
 (0)