Skip to content

Commit a2e0ae5

Browse files
committed
Chore: Drop support for Python 3.8
Python 3.8 was EoL @ 2024-10-07, our 6 month promise for support ended on 2024-04-07. This PR removes all unnecessary references and modifies the baseline references to 3.9.
1 parent e5a9307 commit a2e0ae5

File tree

39 files changed

+256
-971
lines changed

39 files changed

+256
-971
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ body:
1919
Please describe any aspect of your environment relevant to the problem, including your Python version, [platform](https://docs.python.org/3/library/platform.html), version numbers of installed dependencies, information about your cloud hosting provider, etc. If you're reporting a problem with a specific version of a library in this repo, please check whether the problem has been fixed on main.
2020
value: |
2121
OS: (e.g, Ubuntu)
22-
Python version: (e.g., Python 3.8.10)
22+
Python version: (e.g., Python 3.9.10)
2323
SDK version: (e.g., 1.25.0)
2424
API version: (e.g., 1.25.0)
2525

.github/workflows/generate_workflows.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ def get_test_job_datas(tox_envs: list, operating_systems: list) -> list:
4747
os_alias = {"ubuntu-latest": "Ubuntu", "windows-latest": "Windows"}
4848

4949
python_version_alias = {
50-
"pypy3": "pypy-3.8",
51-
"py38": "3.8",
50+
"pypy3": "pypy-3.9",
5251
"py39": "3.9",
5352
"py310": "3.10",
5453
"py311": "3.11",

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
# next few steps publish to pypi
7070
- uses: actions/setup-python@v5
7171
with:
72-
python-version: '3.8'
72+
python-version: '3.9'
7373

7474
- name: Build wheels
7575
run: ./scripts/build.sh

0 commit comments

Comments
 (0)