Skip to content

Commit

Permalink
Add build and release jobs for python 3.9 on Windows
Browse files Browse the repository at this point in the history
Resolves: #226
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
  • Loading branch information
frozencemetery committed Nov 11, 2020
1 parent 4cb2dd5 commit c3f1215
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,17 @@
"strategy": {
"fail-fast": false,
"matrix": {
"name": ["win-py-3.8", "win-py-3.7", "win-py-3.6"],
"name": [
"win-py-3.9",
"win-py-3.8",
"win-py-3.7",
"win-py-3.6",
],
"include": [
{
"name": "win-py-3.9",
"pyenv": "3.8",
},
{
"name": "win-py-3.8",
"pyenv": "3.8",
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,17 @@
"runs-on": "windows-latest",
"strategy": {
"matrix": {
"name": ["win-wheel-3.8", "win-wheel-3.7",
"win-wheel-3.6"],
"name": [
"win-wheel-3.9",
"win-wheel-3.8",
"win-wheel-3.7",
"win-wheel-3.6",
],
"include": [
{
"name": "win-wheel-3.9",
"pyenv": "3.9",
},
{
"name": "win-wheel-3.8",
"pyenv": "3.8",
Expand Down

0 comments on commit c3f1215

Please sign in to comment.