Skip to content

Commit ce3b80d

Browse files
committed
Drop support for Python 3.7
In this commmit we are removing support for Python 3.7, to align with upstream: open-telemetry/opentelemetry-python-contrib#2152
1 parent 8e3078b commit ce3b80d

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/test.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,17 @@ jobs:
99
build:
1010
env:
1111
# We use these variables to convert between tox and GHA version literals
12-
py37: 3.7
1312
py38: 3.8
1413
py39: 3.9
1514
py310: "3.10"
1615
py311: "3.11"
17-
pypy3: "pypy3.7"
16+
pypy3: "pypy3.8"
1817
RUN_MATRIX_COMBINATION: ${{ matrix.python-version }}-${{ matrix.package }}-${{ matrix.os }}
1918
runs-on: ${{ matrix.os }}
2019
strategy:
2120
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
2221
matrix:
23-
python-version: [ py37, py38, py39, py310, py311, pypy3 ]
22+
python-version: [ py38, py39, py310, py311, pypy3 ]
2423
package: [ "aws-opentelemetry-distro" ]
2524
os: [ ubuntu-20.04 ]
2625
steps:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ preconfigured for use with AWS services. Please check out that project too to ge
77
understanding of the underlying internals.
88

99
## Python Version Support
10-
This project ensures compatibility with the following supported Python versions: 3.7, 3.8, 3.9, 3.10, 3.11
10+
This project ensures compatibility with the following supported Python versions: 3.8, 3.9, 3.10, 3.11
1111

1212
## Code Style Check
1313

aws-opentelemetry-distro/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
88
description = "AWS OpenTelemetry Python Distro"
99
readme = "README.rst"
1010
license = "Apache-2.0"
11-
requires-python = ">=3.7"
11+
requires-python = ">=3.8"
1212

1313
dependencies = [
1414
"opentelemetry-api ~= 1.12",

0 commit comments

Comments
 (0)