Skip to content

Commit 735a7bd

Browse files
Fix CI/CD because of GitHub action regression.
1 parent cf36a6f commit 735a7bd

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/pull_request.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python-version: [3.7, 3.8, 3.9]
12+
# TODO: Add 3.7 to python-versions after GitHub action regression is resolved.
13+
# https://github.com/actions/setup-python/issues/682
14+
python-version: [3.8, 3.9]
1315
os: [ubuntu-latest, windows-latest, macos-latest]
1416

1517
steps:

.github/workflows/push.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python-version: [3.7, 3.8, 3.9]
12+
# TODO: Add 3.7 to python-versions after GitHub action regression is resolved.
13+
# https://github.com/actions/setup-python/issues/682
14+
python-version: [3.8, 3.9]
1315
os: [ubuntu-latest, windows-latest, macos-latest]
1416

1517
steps:

0 commit comments

Comments
 (0)