Skip to content

Commit 3f02003

Browse files
Merge pull request #73 from iris-hep/feat_python-3.13
Support Python 3.13 and require >= 3.8
2 parents e1a0cf5 + dde7e83 commit 3f02003

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/python-package.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, windows-latest, macos-latest]
9-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
9+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1010
steps:
1111
- uses: actions/checkout@v2
1212
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
long_description=long_description,
1010
long_description_content_type="text/markdown",
1111
packages=setuptools.find_packages(exclude=['tests']),
12-
python_requires=('>=2.7, '
13-
'!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <3.13'),
12+
python_requires=('>=3.8, <3.14'),
1413
install_requires=['lark'],
1514
extras_require={'test': ['flake8', 'pytest', 'pytest-cov']},
1615
package_data={'qastle': ['syntax.lark']},

0 commit comments

Comments
 (0)