From f888621380829fbf95dd5f17f002169d77b28b13 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Sat, 7 Feb 2026 18:19:28 +0900 Subject: [PATCH 1/3] update mariadb-connector to 3.4.8 --- .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 f8dbf87a..712e1ba5 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -10,7 +10,7 @@ jobs: build: runs-on: windows-latest env: - CONNECTOR_VERSION: "3.4.1" + CONNECTOR_VERSION: "3.4.8" steps: - name: Cache Connector id: cache-connector From f11b182a52b1bab1ce93a1ac9eb0af49914a5b26 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Sat, 7 Feb 2026 18:26:05 +0900 Subject: [PATCH 2/3] update download link --- .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 712e1ba5..e547d461 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -23,7 +23,7 @@ jobs: if: steps.cache-connector.outputs.cache-hit != 'true' shell: bash run: | - curl -LO "https://downloads.mariadb.com/Connectors/c/connector-c-${CONNECTOR_VERSION}/mariadb-connector-c-${CONNECTOR_VERSION}-src.zip" + curl -LO "https://dlm.mariadb.com/4516912/Connectors/c/connector-c-${CONNECTOR_VERSION}/mariadb-connector-c-${CONNECTOR_VERSION}-src.zip" unzip "mariadb-connector-c-${CONNECTOR_VERSION}-src.zip" -d c:/ mv "c:/mariadb-connector-c-${CONNECTOR_VERSION}-src" c:/mariadb-connector-src From 1a714adc3e88340e1de7c48e15318fdbab385946 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Sat, 7 Feb 2026 22:38:47 +0900 Subject: [PATCH 3/3] fixup --- .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 e547d461..52dcbc1b 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -82,7 +82,7 @@ jobs: CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9" CIBW_ARCHS: "AMD64" CIBW_TEST_COMMAND: 'python -c "import MySQLdb; print(MySQLdb.version_info)" ' - run: "python -m cibuildwheel --prerelease-pythons --output-dir dist" + run: "python -m cibuildwheel --output-dir dist" - name: Build sdist working-directory: mysqlclient