Skip to content

Commit

Permalink
drop python 2.7 and 3.6, add 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
masonproffitt committed Oct 11, 2024
1 parent e1a0cf5 commit eb1678e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 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', '3.12']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
long_description=long_description,
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.13'),
python_requires=('>=3.7, <3.14'),
install_requires=['lark'],
extras_require={'test': ['flake8', 'pytest', 'pytest-cov']},
package_data={'qastle': ['syntax.lark']},
Expand Down

0 comments on commit eb1678e

Please sign in to comment.