Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Drop support for Python 3.7 #41

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -9,18 +9,17 @@ jobs:
build:
env:
# We use these variables to convert between tox and GHA version literals
py37: 3.7
py38: 3.8
py39: 3.9
py310: "3.10"
py311: "3.11"
pypy3: "pypy3.7"
pypy3: "pypy3.8"
RUN_MATRIX_COMBINATION: ${{ matrix.python-version }}-${{ matrix.package }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
matrix:
python-version: [ py37, py38, py39, py310, py311, pypy3 ]
python-version: [ py38, py39, py310, py311, pypy3 ]
package: [ "aws-opentelemetry-distro" ]
os: [ ubuntu-20.04 ]
steps:
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ preconfigured for use with AWS services. Please check out that project too to ge
understanding of the underlying internals.

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

## Code Style Check

2 changes: 1 addition & 1 deletion aws-opentelemetry-distro/pyproject.toml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
description = "AWS OpenTelemetry Python Distro"
readme = "README.rst"
license = "Apache-2.0"
requires-python = ">=3.7"
requires-python = ">=3.8"

dependencies = [
"opentelemetry-api ~= 1.12",
Loading