From 111f7863b760b3dcca87e84f84b374a48ef88f4c Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Sat, 6 Sep 2025 20:31:35 +0200 Subject: [PATCH] ci: move minimum SQLAlchemy git main Python version to 3.10 --- .github/workflows/3rd-party-tests.yml | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/.github/workflows/3rd-party-tests.yml b/.github/workflows/3rd-party-tests.yml index 1450087b3..0abbc9b66 100644 --- a/.github/workflows/3rd-party-tests.yml +++ b/.github/workflows/3rd-party-tests.yml @@ -26,22 +26,25 @@ jobs: strategy: fail-fast: false matrix: - python-version: - - "3.13" - - "3.9" - sqlalchemy_label: - # what version of sqlalchemy to download is defined in the "include" section below, - # in the variable pip_sqlalchemy - - git_main - - release - impl: - - c - - python + version-label: [min, max] + # what version of sqlalchemy to download is defined in the "include" section below, + # in the variable pip_sqlalchemy + sqlalchemy_label: [git_main, release] + impl: [c, python] include: - sqlalchemy_label: git_main pip_sqlalchemy: git+https://github.com/sqlalchemy/sqlalchemy.git#egg=sqlalchemy - sqlalchemy_label: release pip_sqlalchemy: sqlalchemy>=2 + # Establish Python version to test + - sqlalchemy_label: git_main + version-label: min + python-version: "3.10" + - sqlalchemy_label: release + version-label: min + python-version: "3.9" + - version-label: max + python-version: "3.13" env: PSYCOPG_IMPL: ${{ matrix.impl }} -- 2.47.3