Skip to content

Commit

Permalink
Merge pull request #60 from iris-hep/python-3.10
Browse files Browse the repository at this point in the history
Support Python 3.10
  • Loading branch information
masonproffitt authored Oct 13, 2021
2 parents ab3dd24 + 2194b7e commit 2a8f885
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=['tests']),
python_requires=('>=2.7, '
'!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <3.10'),
'!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <3.11'),
install_requires=['lark-parser>=0.6.5'],
extras_require={'test': ['flake8', 'pytest', 'pytest-cov']},
package_data={'qastle': ['syntax.lark']},
Expand Down

0 comments on commit 2a8f885

Please sign in to comment.