Skip to content

Commit cb1d6e9

Browse files
committed
fix: correct python version variable name in CI workflow exclusions
1 parent 75ec90b commit cb1d6e9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
python: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
1313
urllib3-line: ["lt2", "ge2"]
1414
exclude:
15-
- python-version: "3.7"
15+
- python: "3.7"
1616
urllib3-line: "ge2"
17-
- python-version: "3.8"
17+
- python: "3.8"
1818
urllib3-line: "ge2"
1919
steps:
2020
- uses: actions/checkout@v1

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
python: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
1111
urllib3-line: ["lt2", "ge2"]
1212
exclude:
13-
- python-version: "3.7"
13+
- python: "3.7"
1414
urllib3-line: "ge2"
15-
- python-version: "3.8"
15+
- python: "3.8"
1616
urllib3-line: "ge2"
1717
steps:
1818
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)