Skip to content

Commit bc46f90

Browse files
authored
[TRIVIAL] Raises minimum Python version to 3.11 (#742)
We are raising the minimum Python version to 3.11 due to the new asyncio module.
1 parent aae561c commit bc46f90

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/get-python-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- id: extract-versions
2222
run: |
23-
python_versions='[ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]'
23+
python_versions='[ "3.11", "3.12", "3.13" ]'
2424
2525
echo "python-versions=${python_versions}" >> $GITHUB_OUTPUT
2626
echo "earliest-python-version=$(echo "${python_versions}" | jq --raw-output '.[0]')" >> $GITHUB_OUTPUT

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,9 @@
3636
"Programming Language :: Python :: 3",
3737
"Programming Language :: Python :: 3 :: Only",
3838
"Programming Language :: Python :: 3.7",
39-
"Programming Language :: Python :: 3.8",
40-
"Programming Language :: Python :: 3.9",
41-
"Programming Language :: Python :: 3.10",
4239
"Programming Language :: Python :: 3.11",
4340
"Programming Language :: Python :: 3.12",
41+
"Programming Language :: Python :: 3.13",
4442
"Programming Language :: Python :: Implementation :: CPython",
4543
"Topic :: Software Development :: Libraries :: Python Modules",
4644
],

start_rc.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ def download_if_necessary(repo, group, artifact_id, version, is_test_artifact=Fa
6363
def start_rc(stdout=None, stderr=None):
6464
artifacts = []
6565

66-
rc = download_if_necessary(ENTERPRISE_SNAPSHOT_REPO, HAZELCAST_GROUP, "hazelcast-remote-controller", RC_VERSION)
66+
rc = download_if_necessary(
67+
ENTERPRISE_SNAPSHOT_REPO, HAZELCAST_GROUP, "hazelcast-remote-controller", RC_VERSION
68+
)
6769
tests = download_if_necessary(REPO, HAZELCAST_GROUP, "hazelcast", SERVER_VERSION, True)
6870
sql = download_if_necessary(REPO, HAZELCAST_GROUP, "hazelcast-sql", SERVER_VERSION)
6971

0 commit comments

Comments
 (0)