Skip to content

Commit

Permalink
Revert "Drop python3.11 temporarily (#205)" (#240)
Browse files Browse the repository at this point in the history
* Revert "Drop python3.11 temporarily (#205)"

This reverts commit 339f347.

* update changelogs
  • Loading branch information
aabmass authored and shevisj committed Apr 25, 2023
1 parent d16611e commit 9bd364d
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 7 deletions.
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

0 comments on commit 9bd364d

Please sign in to comment.