Skip to content

Commit 31f0b8f

Browse files
authored
Add support for Python 3.14 and drop EOL 3.8 (#581)
* Add support for Python 3.14 * Drop support for Python 3.8
1 parent f49af81 commit 31f0b8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2121
os: [ubuntu-latest, macos-latest, windows-latest]
2222

2323
steps:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ def make_release_tree(self, basedir, files):
5353
'Development Status :: 5 - Production/Stable',
5454
'License :: OSI Approved :: BSD License',
5555
'Programming Language :: Python :: 3',
56-
'Programming Language :: Python :: 3.8',
5756
'Programming Language :: Python :: 3.9',
5857
'Programming Language :: Python :: 3.10',
5958
'Programming Language :: Python :: 3.11',
6059
'Programming Language :: Python :: 3.12',
6160
'Programming Language :: Python :: 3.13',
61+
'Programming Language :: Python :: 3.14',
6262
],
63-
python_requires=">=3.8",
63+
python_requires=">=3.9",
6464
packages=['pycparser', 'pycparser.ply'],
6565
package_data={'pycparser': ['*.cfg']},
6666
cmdclass={'install': install, 'sdist': sdist},

0 commit comments

Comments
 (0)