diff --git a/.github/workflows/get-python-versions.yml b/.github/workflows/get-python-versions.yml index ad2c2cb52f..eedfd6a09a 100644 --- a/.github/workflows/get-python-versions.yml +++ b/.github/workflows/get-python-versions.yml @@ -20,7 +20,7 @@ jobs: steps: - id: extract-versions run: | - python_versions='[ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]' + python_versions='[ "3.11", "3.12", "3.13" ]' echo "python-versions=${python_versions}" >> $GITHUB_OUTPUT echo "earliest-python-version=$(echo "${python_versions}" | jq --raw-output '.[0]')" >> $GITHUB_OUTPUT diff --git a/setup.py b/setup.py index cf6fdc55f8..e59737b500 100644 --- a/setup.py +++ b/setup.py @@ -36,11 +36,9 @@ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules", ], diff --git a/start_rc.py b/start_rc.py index 5daef64ad3..403f3576c7 100644 --- a/start_rc.py +++ b/start_rc.py @@ -63,7 +63,9 @@ def download_if_necessary(repo, group, artifact_id, version, is_test_artifact=Fa def start_rc(stdout=None, stderr=None): artifacts = [] - rc = download_if_necessary(ENTERPRISE_SNAPSHOT_REPO, HAZELCAST_GROUP, "hazelcast-remote-controller", RC_VERSION) + rc = download_if_necessary( + ENTERPRISE_SNAPSHOT_REPO, HAZELCAST_GROUP, "hazelcast-remote-controller", RC_VERSION + ) tests = download_if_necessary(REPO, HAZELCAST_GROUP, "hazelcast", SERVER_VERSION, True) sql = download_if_necessary(REPO, HAZELCAST_GROUP, "hazelcast-sql", SERVER_VERSION)