1010 build :
1111 runs-on : windows-latest
1212 env :
13- CONNECTOR_VERSION : " 3.1.11 "
13+ CONNECTOR_VERSION : " 3.2.4 "
1414 steps :
1515
1616 - name : Cache Connector
@@ -61,14 +61,14 @@ jobs:
6161 shell : cmd
6262 working-directory : mysqlclient
6363 run : |
64+ py -3.10 -m pip install -U setuptools wheel pip
65+ py -3.10 setup.py bdist_wheel
6466 py -3.9 -m pip install -U setuptools wheel pip
6567 py -3.9 setup.py bdist_wheel
6668 py -3.8 -m pip install -U setuptools wheel pip
6769 py -3.8 setup.py bdist_wheel
6870 py -3.7 -m pip install -U setuptools wheel pip
6971 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
7272
7373 - name : Upload Wheel
7474 uses : actions/upload-artifact@v2
@@ -81,12 +81,12 @@ jobs:
8181 working-directory : mysqlclient/dist
8282 run : |
8383 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)"
8486 py -3.9 -m pip install --no-index --find-links . mysqlclient
8587 py -3.9 -c "import MySQLdb; print(MySQLdb.version_info)"
8688 py -3.8 -m pip install --no-index --find-links . mysqlclient
8789 py -3.8 -c "import MySQLdb; print(MySQLdb.version_info)"
8890 py -3.7 -m pip install --no-index --find-links . mysqlclient
8991 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)"
9292
0 commit comments