From a180a01f14db9a73d2d9a681cf4333e86550b6c6 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Tue, 17 Dec 2024 18:52:43 -0800 Subject: [PATCH] don't enable 3.12 --- .github/actions/setup-backend/action.yml | 5 +++-- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-backend/action.yml b/.github/actions/setup-backend/action.yml index fdc15fe7048c0..29a5df7407268 100644 --- a/.github/actions/setup-backend/action.yml +++ b/.github/actions/setup-backend/action.yml @@ -26,9 +26,10 @@ runs: shell: bash run: | if [ "${{ inputs.python-version }}" = "current" ]; then - echo "PYTHON_VERSION=3.11" >> $GITHUB_ENV + echo "PYTHON_VERSION=3.11.11" >> $GITHUB_ENV elif [ "${{ inputs.python-version }}" = "next" ]; then - echo "PYTHON_VERSION=3.12" >> $GITHUB_ENV + # TODO: set to 3.12 when libs are ready - seemed hard on 12/17/24 + echo "PYTHON_VERSION=3.11" >> $GITHUB_ENV elif [ "${{ inputs.python-version }}" = "previous" ]; then echo "PYTHON_VERSION=3.10" >> $GITHUB_ENV else diff --git a/pyproject.toml b/pyproject.toml index 9976f45235bd1..a84db13b00dfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ authors = [ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", + # "Programming Language :: Python :: 3.12", # not just yet ... ] dependencies = [ "backoff>=1.8.0",