We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb7e94a commit b56379bCopy full SHA for b56379b
.github/workflows/ci.yaml
@@ -13,7 +13,6 @@ jobs:
13
strategy:
14
matrix:
15
py:
16
- - { version: "3.8", tox: "38" }
17
- { version: "3.9", tox: "39" }
18
- { version: "3.10", tox: "310" }
19
- { version: "3.11", tox: "311" }
docs/contributing.md
@@ -55,17 +55,17 @@ tox -e dev
55
56
### Running tests
57
58
-This project supports python versions 3.5 to 3.9. To run tests, use `tox`:
+This project supports python versions 3.9 to 3.13. To run tests, use `tox`:
59
60
```sh
61
# List all tox environments
62
tox -l
63
64
-# Run python3.8 exporter tests
65
-tox -e py38-ci-test-exporter
+# Run python3.12 exporter tests
+tox -e py312-ci-test-exporter
66
67
-# Run all python3.8 tests in parallel
68
-tox -f py38-test -pauto
+# Run all python3.12 tests in parallel
+tox -f py312-test -pauto
69
70
# All checks that run in continuous integration use the "ci" factor, which
71
# makes it easy to test without submitting a PR. To run all of them in
opentelemetry-exporter-gcp-logging/setup.cfg
@@ -14,14 +14,13 @@ classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3
- Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
20
Programming Language :: Python :: 3.11
21
Programming Language :: Python :: 3.12
22
23
[options]
24
-python_requires = >=3.8
+python_requires = >=3.9
25
package_dir=
26
=src
27
packages=find_namespace:
opentelemetry-exporter-gcp-monitoring/setup.cfg
@@ -14,15 +14,14 @@ classifiers =
Programming Language :: Python :: 3.13
28
opentelemetry-exporter-gcp-trace/setup.cfg
@@ -14,14 +14,14 @@ classifiers =
opentelemetry-propagator-gcp/setup.cfg
opentelemetry-resourcedetector-gcp/setup.cfg
tox.ini
@@ -5,7 +5,7 @@ requires =
5
tox>=4
6
envlist =
7
; Add the `ci` factor to any env that should be running during CI.
8
- py3{8,9,10,11,12,13}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector, cloudlogging}
+ py3{9,10,11,12,13}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector, cloudlogging}
9
{lint,mypy}-ci-{cloudtrace,cloudmonitoring,propagator,resourcedetector, cloudlogging}
10
docs-ci
11
@@ -60,7 +60,7 @@ setenv =
propagator: PACKAGE_NAME = opentelemetry-propagator-gcp
resourcedetector: PACKAGE_NAME = opentelemetry-resourcedetector-gcp
-[testenv:py3{8,9,10,11,12,13}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector, cloudlogging}]
+[testenv:py3{9,10,11,12,13}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector, cloudlogging}]
deps =
; editable install the package itself
-e {toxinidir}/{env:PACKAGE_NAME}
0 commit comments