Skip to content

Commit dde7e83

Browse files
committed
drop python 3.7
1 parent eb1678e commit dde7e83

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', '3.12', '3.13']
9+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
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
@@ -9,7 +9,7 @@
99
long_description=long_description,
1010
long_description_content_type="text/markdown",
1111
packages=setuptools.find_packages(exclude=['tests']),
12-
python_requires=('>=3.7, <3.14'),
12+
python_requires=('>=3.8, <3.14'),
1313
install_requires=['lark'],
1414
extras_require={'test': ['flake8', 'pytest', 'pytest-cov']},
1515
package_data={'qastle': ['syntax.lark']},

0 commit comments

Comments
 (0)