Skip to content

Commit a3e07bf

Browse files
committed
Fix #2700 Disable Python3.8 tests
Problem with urllib3==2.5.0 on Python3.8
1 parent ee53e53 commit a3e07bf

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.8", "3.9", "3.10"]
11+
python-version: ["3.9", "3.10"]
1212

1313
steps:
1414
- uses: actions/checkout@v4

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[tox]
2-
envlist = flake8, pydocstyle, py38, py39, py310
2+
envlist = flake8, pydocstyle, py39, py310
33

44

55
[gh-actions]
66
python =
7-
3.8: py38
87
3.9: py39
98
3.10: py310
109

0 commit comments

Comments
 (0)