Skip to content

Commit afb526b

Browse files
Merge pull request #69 from iris-hep/feat_python-3.12
Support Python 3.12
2 parents 1085621 + af3d6f8 commit afb526b

File tree

2 files changed

+2
-2
lines changed

2 files changed

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
long_description_content_type="text/markdown",
1111
packages=setuptools.find_packages(exclude=['tests']),
1212
python_requires=('>=2.7, '
13-
'!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <3.12'),
13+
'!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <3.13'),
1414
install_requires=['lark'],
1515
extras_require={'test': ['flake8', 'pytest', 'pytest-cov']},
1616
package_data={'qastle': ['syntax.lark']},

0 commit comments

Comments
 (0)