Skip to content

Commit 2a8f885

Browse files
Merge pull request #60 from iris-hep/python-3.10
Support Python 3.10
2 parents ab3dd24 + 2194b7e commit 2a8f885

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: [2.7, 3.6, 3.7, 3.8, 3.9]
9+
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10']
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.10'),
13+
'!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <3.11'),
1414
install_requires=['lark-parser>=0.6.5'],
1515
extras_require={'test': ['flake8', 'pytest', 'pytest-cov']},
1616
package_data={'qastle': ['syntax.lark']},

0 commit comments

Comments
 (0)