From 535e2e77a5b122673ea88d3754640d35c7964602 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Sat, 7 Feb 2026 23:28:42 +0900 Subject: [PATCH 1/2] add Python 3.14 and drop Python 3.9 --- .github/workflows/tests.yaml | 6 +++--- .github/workflows/windows.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index cf784c78..be67a0bb 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -13,9 +13,9 @@ jobs: PIP_DISABLE_PIP_VERSION_CHECK: 1 strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.12", "3.14", "3.14t"] include: - - python-version: "3.12" + - python-version: "3.11" mariadb: 1 steps: - if: ${{ matrix.mariadb }} @@ -52,7 +52,7 @@ jobs: - name: Install test dependencies run: | pip install -r requirements.txt - + - name: Run tests env: TESTDB: actions.cnf diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 52dcbc1b..e31eeb1d 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -79,7 +79,7 @@ jobs: - name: Build wheels working-directory: mysqlclient env: - CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9" + CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10" CIBW_ARCHS: "AMD64" CIBW_TEST_COMMAND: 'python -c "import MySQLdb; print(MySQLdb.version_info)" ' run: "python -m cibuildwheel --output-dir dist" From 1357846853ab78bf078ca9e53a5670f534f8fe7b Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Sat, 7 Feb 2026 23:46:16 +0900 Subject: [PATCH 2/2] update django version --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index be67a0bb..ee29bf05 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -68,7 +68,7 @@ jobs: env: PIP_NO_PYTHON_VERSION_WARNING: 1 PIP_DISABLE_PIP_VERSION_CHECK: 1 - DJANGO_VERSION: "4.2.16" + DJANGO_VERSION: "4.2.28" steps: - name: Start MySQL run: |