Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Add support for python 3.11 #240

Merged
merged 2 commits into from
Apr 25, 2023
Merged
Show file tree
Hide file tree
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
11 changes: 6 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ jobs:
strategy:
matrix:
py:
- {version: "3.7", tox: "37"}
- {version: "3.8", tox: "38"}
- {version: "3.9", tox: "39"}
- {version: "3.10", tox: "310"}
- { version: "3.7", tox: "37" }
- { version: "3.8", tox: "38" }
- { version: "3.9", tox: "39" }
- { version: "3.10", tox: "310" }
- { version: "3.11", tox: "311" }
env:
run-matrix-combo: ${{ matrix.py.version }}

Expand Down Expand Up @@ -48,7 +49,7 @@ jobs:
matrix:
target: [lint-ci, docs-ci, mypy-ci]
py:
- {version: "3.10"}
- { version: "3.10" }

env:
run-matrix-combo: ${{ matrix.py.version }}-${{ matrix.target }}
Expand Down
3 changes: 3 additions & 0 deletions opentelemetry-exporter-gcp-monitoring/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Add support for Python 3.11
([#240](https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/pull/240))

## Version 1.4.0a0

Released 2022-12-05
Expand Down
1 change: 1 addition & 0 deletions opentelemetry-exporter-gcp-monitoring/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
python_requires = >=3.7
Expand Down
3 changes: 3 additions & 0 deletions opentelemetry-exporter-gcp-trace/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Add support for Python 3.11
([#240](https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/pull/240))

## Version 1.4.0

Released 2022-12-05
Expand Down
1 change: 1 addition & 0 deletions opentelemetry-exporter-gcp-trace/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
python_requires = >=3.7
Expand Down
3 changes: 3 additions & 0 deletions opentelemetry-propagator-gcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Add support for Python 3.11
([#240](https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/pull/240))

## Version 1.4.0

Released 2022-12-05
Expand Down
1 change: 1 addition & 0 deletions opentelemetry-propagator-gcp/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
python_requires = >=3.7
Expand Down
2 changes: 2 additions & 0 deletions opentelemetry-resourcedetector-gcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

- Add spec compliant GCE detection
([#231](https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/pull/231))
- Add support for Python 3.11
([#240](https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/pull/240))

## Version 1.4.0a0

Expand Down
1 change: 1 addition & 0 deletions opentelemetry-resourcedetector-gcp/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
python_requires = >=3.7
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ skipsdist = True
skip_missing_interpreters = True
envlist =
; Add the `ci` factor to any env that should be running during CI.
py3{7,8,9,10}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector}
py3{7,8,9,10,11}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector}
{lint,mypy}-ci-{cloudtrace,cloudmonitoring,propagator,resourcedetector}
docs-ci

Expand Down Expand Up @@ -55,7 +55,7 @@ setenv =
propagator: PACKAGE_NAME = opentelemetry-propagator-gcp
resourcedetector: PACKAGE_NAME = opentelemetry-resourcedetector-gcp

[testenv:py3{7,8,9,10}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector}]
[testenv:py3{7,8,9,10,11}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector}]
deps =
test: {[constants]base_deps}
test: {[constants]monorepo_deps}
Expand Down