10
10
build :
11
11
runs-on : windows-latest
12
12
env :
13
- CONNECTOR_VERSION : " 3.1.11 "
13
+ CONNECTOR_VERSION : " 3.2.4 "
14
14
steps :
15
15
16
16
- name : Cache Connector
@@ -61,14 +61,14 @@ jobs:
61
61
shell : cmd
62
62
working-directory : mysqlclient
63
63
run : |
64
+ py -3.10 -m pip install -U setuptools wheel pip
65
+ py -3.10 setup.py bdist_wheel
64
66
py -3.9 -m pip install -U setuptools wheel pip
65
67
py -3.9 setup.py bdist_wheel
66
68
py -3.8 -m pip install -U setuptools wheel pip
67
69
py -3.8 setup.py bdist_wheel
68
70
py -3.7 -m pip install -U setuptools wheel pip
69
71
py -3.7 setup.py bdist_wheel
70
- py -3.6 -m pip install -U setuptools wheel pip
71
- py -3.6 setup.py bdist_wheel
72
72
73
73
- name : Upload Wheel
74
74
uses : actions/upload-artifact@v2
@@ -81,12 +81,12 @@ jobs:
81
81
working-directory : mysqlclient/dist
82
82
run : |
83
83
ls -la
84
+ py -3.10 -m pip install --no-index --find-links . mysqlclient
85
+ py -3.10 -c "import MySQLdb; print(MySQLdb.version_info)"
84
86
py -3.9 -m pip install --no-index --find-links . mysqlclient
85
87
py -3.9 -c "import MySQLdb; print(MySQLdb.version_info)"
86
88
py -3.8 -m pip install --no-index --find-links . mysqlclient
87
89
py -3.8 -c "import MySQLdb; print(MySQLdb.version_info)"
88
90
py -3.7 -m pip install --no-index --find-links . mysqlclient
89
91
py -3.7 -c "import MySQLdb; print(MySQLdb.version_info)"
90
- py -3.6 -m pip install --no-index --find-links . mysqlclient
91
- py -3.6 -c "import MySQLdb; print(MySQLdb.version_info)"
92
92
0 commit comments