Skip to content

Commit adc3ad8

Browse files
authored
Merge pull request #13 from rixwew/#12
Fix github action errors on windows and macos environments
2 parents d318cfc + 05f5111 commit adc3ad8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_mac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
os: [macos-latest]
15+
os: [macos-10.15]
1616
architecture: [x64]
17-
python-version: [3.6, 3.7, 3.8]
17+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
1818

1919
steps:
2020
- uses: actions/checkout@v2

.github/workflows/build_win.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
os: [windows-latest]
15+
os: [windows-2019]
1616
architecture: [x64, x86]
17-
python-version: [3.6, 3.7, 3.8]
17+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
1818

1919
steps:
2020
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)