Skip to content

Commit

Permalink
allow and test python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
masonproffitt committed Oct 6, 2023
1 parent 1085621 commit af3d6f8
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: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
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.12'),
'!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <3.13'),
install_requires=['lark'],
extras_require={'test': ['flake8', 'pytest', 'pytest-cov']},
package_data={'qastle': ['syntax.lark']},
Expand Down

0 comments on commit af3d6f8

Please sign in to comment.