From 6f41c91ef9648694f7e3c99446ac2d688deb7e4f Mon Sep 17 00:00:00 2001 From: "Christoph \"SuperVirus\" Heitkamp" Date: Thu, 3 Dec 2020 13:14:05 +0100 Subject: [PATCH 1/3] Added Python 3.9 to GitHub Action --- .github/workflows/windows.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 4b62655c..2d11ec54 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -63,6 +63,8 @@ jobs: shell: cmd working-directory: ../mysqlclient run: | + 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 @@ -81,6 +83,8 @@ jobs: working-directory: ../mysqlclient/dist run: | ls -la + 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 From deacb36c8def8d35517fc80e728096a4657f4991 Mon Sep 17 00:00:00 2001 From: "Christoph \"SuperVirus\" Heitkamp" Date: Thu, 3 Dec 2020 13:15:59 +0100 Subject: [PATCH 2/3] Added manual trigger to GitHub Actions --- .github/workflows/windows.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 2d11ec54..3b2081fe 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -5,6 +5,7 @@ on: branches: - master create: + workflow_dispatch: jobs: build: From 73bc835a3386ad47709ff64ad2b2b936b1093259 Mon Sep 17 00:00:00 2001 From: "Christoph \"SuperVirus\" Heitkamp" Date: Thu, 3 Dec 2020 13:17:39 +0100 Subject: [PATCH 3/3] Updated MariaDB Connector C to version 3.1.11 --- .github/workflows/windows.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 3b2081fe..55a013b0 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -11,7 +11,7 @@ jobs: build: runs-on: windows-latest env: - CONNECTOR_VERSION: "3.1.9" + CONNECTOR_VERSION: "3.1.11" steps: - name: Cache Connector