Skip to content

Commit

Permalink
Windows: Update MariaDB Connector to 3.2.4 (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
methane authored Oct 19, 2021
1 parent aa28721 commit 3ee07a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: windows-latest
env:
CONNECTOR_VERSION: "3.1.11"
CONNECTOR_VERSION: "3.2.4"
steps:

- name: Cache Connector
Expand Down Expand Up @@ -61,14 +61,14 @@ jobs:
shell: cmd
working-directory: mysqlclient
run: |
py -3.10 -m pip install -U setuptools wheel pip
py -3.10 setup.py bdist_wheel
py -3.9 -m pip install -U setuptools wheel pip
py -3.9 setup.py bdist_wheel
py -3.8 -m pip install -U setuptools wheel pip
py -3.8 setup.py bdist_wheel
py -3.7 -m pip install -U setuptools wheel pip
py -3.7 setup.py bdist_wheel
py -3.6 -m pip install -U setuptools wheel pip
py -3.6 setup.py bdist_wheel
- name: Upload Wheel
uses: actions/upload-artifact@v2
Expand All @@ -81,12 +81,12 @@ jobs:
working-directory: mysqlclient/dist
run: |
ls -la
py -3.10 -m pip install --no-index --find-links . mysqlclient
py -3.10 -c "import MySQLdb; print(MySQLdb.version_info)"
py -3.9 -m pip install --no-index --find-links . mysqlclient
py -3.9 -c "import MySQLdb; print(MySQLdb.version_info)"
py -3.8 -m pip install --no-index --find-links . mysqlclient
py -3.8 -c "import MySQLdb; print(MySQLdb.version_info)"
py -3.7 -m pip install --no-index --find-links . mysqlclient
py -3.7 -c "import MySQLdb; print(MySQLdb.version_info)"
py -3.6 -m pip install --no-index --find-links . mysqlclient
py -3.6 -c "import MySQLdb; print(MySQLdb.version_info)"

0 comments on commit 3ee07a0

Please sign in to comment.