Skip to content

Commit 71d1c14

Browse files
Add build and release jobs for python 3.9 on Windows
Resolves: #226 Signed-off-by: Robbie Harwood <[email protected]>
1 parent 4cb2dd5 commit 71d1c14

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

.github/workflows/build.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,17 @@
6060
"strategy": {
6161
"fail-fast": false,
6262
"matrix": {
63-
"name": ["win-py-3.8", "win-py-3.7", "win-py-3.6"],
63+
"name": [
64+
"win-py-3.9",
65+
"win-py-3.8",
66+
"win-py-3.7",
67+
"win-py-3.6",
68+
],
6469
"include": [
70+
{
71+
"name": "win-py-3.9",
72+
"pyenv": "3.9",
73+
},
6574
{
6675
"name": "win-py-3.8",
6776
"pyenv": "3.8",

.github/workflows/release.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,17 @@
7979
"runs-on": "windows-latest",
8080
"strategy": {
8181
"matrix": {
82-
"name": ["win-wheel-3.8", "win-wheel-3.7",
83-
"win-wheel-3.6"],
82+
"name": [
83+
"win-wheel-3.9",
84+
"win-wheel-3.8",
85+
"win-wheel-3.7",
86+
"win-wheel-3.6",
87+
],
8488
"include": [
89+
{
90+
"name": "win-wheel-3.9",
91+
"pyenv": "3.9",
92+
},
8593
{
8694
"name": "win-wheel-3.8",
8795
"pyenv": "3.8",

0 commit comments

Comments
 (0)