Skip to content

Commit cb5ab39

Browse files
committed
Update Python support: drop 3.9, add 3.14
Python 3.14 has been released, while 3.9 reached its end of life.
1 parent b48dde5 commit cb5ab39

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
os: [ubuntu-latest, macos-latest, windows-latest]
9-
python-version: [3.9, '3.10', '3.11', '3.12', '3.13', 'pypy-3.11']
9+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.11']
1010
runs-on: ${{ matrix.os }}
1111
steps:
1212
- uses: actions/checkout@v4

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ANTLR v4 in sync.
2020
Requirements
2121
============
2222

23-
* Python_ >= 3.9
23+
* Python_ >= 3.10
2424
* Java_ SE >= 7 JRE or JDK (the latter is optional)
2525

2626
.. _Python: https://www.python.org

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ classifiers =
1313
Operating System :: OS Independent
1414
Programming Language :: Python
1515
Programming Language :: Python :: 3
16-
Programming Language :: Python :: 3.9
1716
Programming Language :: Python :: 3.10
1817
Programming Language :: Python :: 3.11
1918
Programming Language :: Python :: 3.12
2019
Programming Language :: Python :: 3.13
20+
Programming Language :: Python :: 3.14
2121
Topic :: Software Development :: Code Generators
2222
platform = any
2323

2424
[options]
2525
package_dir =
2626
= src
2727
packages = find:
28-
python_requires = >=3.9
28+
python_requires = >=3.10
2929
install_requires =
3030
inators
3131
setuptools

0 commit comments

Comments
 (0)