Skip to content

Commit c9ab87c

Browse files
srikanthccvCircleCI
authored andcommitted
Add support for py3.11 (open-telemetry#1415)
1 parent 62b561c commit c9ab87c

File tree

51 files changed

+98
-47
lines changed

Some content is hidden

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

51 files changed

+98
-47
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ jobs:
1616
py38: 3.8
1717
py39: 3.9
1818
py310: "3.10"
19+
py311: "3.11"
1920
pypy3: "pypy3.7"
2021
RUN_MATRIX_COMBINATION: ${{ matrix.python-version }}-${{ matrix.package }}-${{ matrix.os }}
2122
runs-on: ${{ matrix.os }}
2223
strategy:
2324
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
2425
matrix:
25-
python-version: [ py37, py38, py39, py310, pypy3 ]
26+
python-version: [ py37, py38, py39, py310, py311, pypy3 ]
2627
package: ["instrumentation", "distro", "exporter", "sdkextension", "propagator"]
2728
os: [ ubuntu-20.04 ]
2829
steps:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions

_template/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.8",
2727
"Programming Language :: Python :: 3.9",
2828
"Programming Language :: Python :: 3.10",
29+
"Programming Language :: Python :: 3.11",
2930
]
3031
dependencies = [
3132
"opentelemetry-api ~= 1.12",

exporter/opentelemetry-exporter-richconsole/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.8",
2323
"Programming Language :: Python :: 3.9",
2424
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2526
]
2627
dependencies = [
2728
"opentelemetry-api ~= 1.12",

instrumentation/opentelemetry-instrumentation-aio-pika/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.8",
2323
"Programming Language :: Python :: 3.9",
2424
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2526
]
2627
dependencies = [
2728
"opentelemetry-api ~= 1.5",

instrumentation/opentelemetry-instrumentation-aiohttp-client/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.8",
2323
"Programming Language :: Python :: 3.9",
2424
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2526
]
2627
dependencies = [
2728
"opentelemetry-api ~= 1.12",

instrumentation/opentelemetry-instrumentation-aiopg/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.8",
2323
"Programming Language :: Python :: 3.9",
2424
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2526
]
2627
dependencies = [
2728
"opentelemetry-api ~= 1.12",

instrumentation/opentelemetry-instrumentation-asgi/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.8",
2323
"Programming Language :: Python :: 3.9",
2424
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2526
]
2627
dependencies = [
2728
"asgiref ~= 3.0",

instrumentation/opentelemetry-instrumentation-asyncpg/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.8",
2323
"Programming Language :: Python :: 3.9",
2424
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2526
]
2627
dependencies = [
2728
"opentelemetry-api ~= 1.12",

instrumentation/opentelemetry-instrumentation-boto/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.8",
2323
"Programming Language :: Python :: 3.9",
2424
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2526
]
2627
dependencies = [
2728
"opentelemetry-api ~= 1.12",

0 commit comments

Comments
 (0)