Skip to content

Commit 60d2712

Browse files
Merge pull request #1023 from VWS-Python/pull-out-py310-changes
Improve CI setup in preparation for Python 3.10 support
2 parents 45e6fb6 + 99f15dd commit 60d2712

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: [3.9]
23+
python-version: ["3.9"]
2424
ci_pattern:
2525
- test_query.py::TestContentType
2626
- test_query.py::TestSuccess

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
python-version: [3.9]
22+
python-version: ["3.9"]
2323

2424
steps:
2525
- uses: actions/checkout@v2

.github/workflows/windows-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python-version: [3.9]
20+
python-version: ["3.9"]
2121
platform: [windows-latest]
2222

2323
runs-on: ${{ matrix.platform }}
@@ -59,7 +59,7 @@ jobs:
5959
env:
6060
SKIP_REAL: 1
6161
run: |
62-
pytest -s -vvv --exitfirst --cov=src/ --cov=tests --cov-report=xml tests/mock_vws/${{ matrix.ci_pattern }}
62+
pytest -s -vvv --exitfirst --cov=src/ --cov=tests --cov-report=xml tests/mock_vws/
6363
6464
- name: "Show coverage file"
6565
run: |

lint.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ fix-isort:
4242

4343
.PHONY: pip-extra-reqs
4444
pip-extra-reqs:
45-
pip-extra-reqs --requirements-file=requirements/requirements.txt src/
45+
pip-extra-reqs --skip-incompatible --requirements-file=requirements/requirements.txt src/
4646

4747
.PHONY: pip-missing-reqs
4848
pip-missing-reqs:

0 commit comments

Comments
 (0)