File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 5
5
branches :
6
6
- master
7
7
create :
8
+ workflow_dispatch :
8
9
9
10
jobs :
10
11
build :
11
12
runs-on : windows-latest
12
13
env :
13
- CONNECTOR_VERSION : " 3.1.9 "
14
+ CONNECTOR_VERSION : " 3.1.11 "
14
15
steps :
15
16
16
17
- name : Cache Connector
63
64
shell : cmd
64
65
working-directory : ../mysqlclient
65
66
run : |
67
+ py -3.9 -m pip install -U setuptools wheel pip
68
+ py -3.9 setup.py bdist_wheel
66
69
py -3.8 -m pip install -U setuptools wheel pip
67
70
py -3.8 setup.py bdist_wheel
68
71
py -3.7 -m pip install -U setuptools wheel pip
81
84
working-directory : ../mysqlclient/dist
82
85
run : |
83
86
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)"
84
89
py -3.8 -m pip install --no-index --find-links . mysqlclient
85
90
py -3.8 -c "import MySQLdb; print(MySQLdb.version_info)"
86
91
py -3.7 -m pip install --no-index --find-links . mysqlclient
You can’t perform that action at this time.
0 commit comments