Skip to content

Commit feca95e

Browse files
authored
GitHub Action: Add Python 3.9 and Update MariaDB Connector C 3.1.11 (#453)
1 parent ca630c0 commit feca95e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/windows.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ on:
55
branches:
66
- master
77
create:
8+
workflow_dispatch:
89

910
jobs:
1011
build:
1112
runs-on: windows-latest
1213
env:
13-
CONNECTOR_VERSION: "3.1.9"
14+
CONNECTOR_VERSION: "3.1.11"
1415
steps:
1516

1617
- name: Cache Connector
@@ -63,6 +64,8 @@ jobs:
6364
shell: cmd
6465
working-directory: ../mysqlclient
6566
run: |
67+
py -3.9 -m pip install -U setuptools wheel pip
68+
py -3.9 setup.py bdist_wheel
6669
py -3.8 -m pip install -U setuptools wheel pip
6770
py -3.8 setup.py bdist_wheel
6871
py -3.7 -m pip install -U setuptools wheel pip
@@ -81,6 +84,8 @@ jobs:
8184
working-directory: ../mysqlclient/dist
8285
run: |
8386
ls -la
87+
py -3.9 -m pip install --no-index --find-links . mysqlclient
88+
py -3.9 -c "import MySQLdb; print(MySQLdb.version_info)"
8489
py -3.8 -m pip install --no-index --find-links . mysqlclient
8590
py -3.8 -c "import MySQLdb; print(MySQLdb.version_info)"
8691
py -3.7 -m pip install --no-index --find-links . mysqlclient

0 commit comments

Comments
 (0)