From 7094cc95c0ffc8887739a0b6726724f9a4c4b832 Mon Sep 17 00:00:00 2001 From: Mason Proffitt Date: Wed, 13 Oct 2021 20:40:20 +0200 Subject: [PATCH 1/3] allow python 3.10 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bc47e37..a192f1c 100644 --- a/setup.py +++ b/setup.py @@ -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']}, From 3601426d73db6af608f2f4e6740a6a4ae0fa48df Mon Sep 17 00:00:00 2001 From: Mason Proffitt Date: Wed, 13 Oct 2021 20:40:46 +0200 Subject: [PATCH 2/3] add python 3.10 to github action --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 463d7ec..db921be 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 }} From 2194b7e1b763de5d781e5475c4b176bb065f8747 Mon Sep 17 00:00:00 2001 From: Mason Proffitt Date: Wed, 13 Oct 2021 20:45:13 +0200 Subject: [PATCH 3/3] quote python version numbers in github action --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index db921be..37ebef0 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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, 3.10] + 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 }}