Skip to content

Commit 79ab76c

Browse files
committed
Trying to fix infinite pip backtracking and adding python 3.10, 3.11 to GitHub workflows
1 parent 8fe7659 commit 79ab76c

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/tox.yaml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,23 @@ jobs:
1414
toxenv: py37-integration
1515
- python-version: 3.8
1616
toxenv: py38-core
17+
- python-version: 3.8
18+
toxenv: lint
1719
- python-version: 3.8
1820
toxenv: py38-integration
1921
- python-version: 3.9
2022
toxenv: py39-core
2123
- python-version: 3.9
2224
toxenv: py39-integration
23-
- python-version: 3.8
24-
toxenv: lint
25-
25+
- python-version: "3.10"
26+
toxenv: py310-core
27+
- python-version: "3.10"
28+
toxenv: py310-integration
29+
- python-version: "3.11"
30+
toxenv: py311-core
31+
- python-version: "3.11"
32+
toxenv: py311-integration
33+
2634
steps:
2735
- uses: actions/checkout@v2
2836
- uses: actions/setup-python@v2
@@ -40,7 +48,7 @@ jobs:
4048
if: steps.cache.outputs.cache-hit != 'true'
4149
run: |
4250
python -m pip install --upgrade pip wheel setuptools
43-
pip install -e .[dev]
51+
pip install -e .[dev] --use-deprecated=legacy-resolver
4452
4553
- name: Pip Check
4654
run: pip check

0 commit comments

Comments
 (0)