Skip to content

Commit 71eb61e

Browse files
committed
Chore: Drop support for Python 3.8
Python 3.8 was EoL @ 2024-10-07, our 6 month promise for support will end @ 2024-04-07. This PR removes all unnecessary references and modifies the baseline references to 3.9. Outdated python syntax was updated with pyupgrade.
1 parent 27d5d93 commit 71eb61e

File tree

189 files changed

+2787
-5557
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+2787
-5557
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ body:
1818
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.
1919
value: |
2020
OS: (e.g, Ubuntu)
21-
Python version: (e.g., Python 3.8.10)
21+
Python version: (e.g., Python 3.9.10)
2222
Package version: (e.g., 0.46.0)
2323
2424
- type: textarea

.github/workflows/generate_workflows_lib/pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "generate-workflows-lib"
77
dynamic = ["version"]
88
description = "A library to generate workflows"
99
license = "Apache-2.0"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
authors = [
1212
{ name = "OpenTelemetry Authors", email = "[email protected]" },
1313
]
@@ -17,7 +17,6 @@ classifiers = [
1717
"License :: OSI Approved :: Apache Software License",
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.8",
2120
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/__init__.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/package-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
# next few steps publish to pypi
7979
- uses: actions/setup-python@v5
8080
with:
81-
python-version: '3.8'
81+
python-version: '3.9'
8282

8383
- name: Build wheels
8484
run: ./scripts/build_a_package.sh

.github/workflows/release.yml

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

7171
- name: Build wheels
7272
run: ./scripts/build.sh

0 commit comments

Comments
 (0)