Skip to content

Commit 1a0c750

Browse files
committed
Drop python 3.7 support which is EOL
1 parent 61eecd7 commit 1a0c750

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
strategy:
1414
matrix:
1515
py:
16-
- { version: "3.7", tox: "37" }
1716
- { version: "3.8", tox: "38" }
1817
- { version: "3.9", tox: "39" }
1918
- { version: "3.10", tox: "310" }
2019
- { version: "3.11", tox: "311" }
2120
- { version: "3.12", tox: "312" }
21+
- { version: "3.13", tox: "313" }
2222
env:
2323
run-matrix-combo: ${{ matrix.py.version }}
2424

opentelemetry-exporter-gcp-monitoring/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ classifiers =
1414
License :: OSI Approved :: Apache Software License
1515
Programming Language :: Python
1616
Programming Language :: Python :: 3
17-
Programming Language :: Python :: 3.7
1817
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10
2120
Programming Language :: Python :: 3.11
2221
Programming Language :: Python :: 3.12
22+
Programming Language :: Python :: 3.13
2323

2424
[options]
25-
python_requires = >=3.7
25+
python_requires = >=3.8
2626
package_dir=
2727
=src
2828
packages=find_namespace:

opentelemetry-exporter-gcp-trace/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ classifiers =
1414
License :: OSI Approved :: Apache Software License
1515
Programming Language :: Python
1616
Programming Language :: Python :: 3
17-
Programming Language :: Python :: 3.7
1817
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10
2120
Programming Language :: Python :: 3.11
2221
Programming Language :: Python :: 3.12
22+
Programming Language :: Python :: 3.13
2323

2424
[options]
25-
python_requires = >=3.7
25+
python_requires = >=3.8
2626
package_dir=
2727
=src
2828
packages=find_namespace:

opentelemetry-propagator-gcp/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ classifiers =
1414
License :: OSI Approved :: Apache Software License
1515
Programming Language :: Python
1616
Programming Language :: Python :: 3
17-
Programming Language :: Python :: 3.7
1817
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10
2120
Programming Language :: Python :: 3.11
2221
Programming Language :: Python :: 3.12
22+
Programming Language :: Python :: 3.13
2323

2424
[options]
25-
python_requires = >=3.7
25+
python_requires = >=3.8
2626
package_dir=
2727
=src
2828
packages=find_namespace:

opentelemetry-resourcedetector-gcp/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ classifiers =
1414
License :: OSI Approved :: Apache Software License
1515
Programming Language :: Python
1616
Programming Language :: Python :: 3
17-
Programming Language :: Python :: 3.7
1817
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10
2120
Programming Language :: Python :: 3.11
2221
Programming Language :: Python :: 3.12
22+
Programming Language :: Python :: 3.13
2323

2424
[options]
25-
python_requires = >=3.7
25+
python_requires = >=3.8
2626
package_dir=
2727
=src
2828
packages=find_namespace:

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires =
55
tox>=4
66
envlist =
77
; Add the `ci` factor to any env that should be running during CI.
8-
py3{7,8,9,10,11,12}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector}
8+
py3{8,9,10,11,12,13}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector}
99
{lint,mypy}-ci-{cloudtrace,cloudmonitoring,propagator,resourcedetector}
1010
docs-ci
1111

@@ -58,7 +58,7 @@ setenv =
5858
propagator: PACKAGE_NAME = opentelemetry-propagator-gcp
5959
resourcedetector: PACKAGE_NAME = opentelemetry-resourcedetector-gcp
6060

61-
[testenv:py3{7,8,9,10,11,12}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector}]
61+
[testenv:py3{8,9,10,11,12,13}-ci-test-{cloudtrace,cloudmonitoring,propagator,resourcedetector}]
6262
deps =
6363
; editable install the package itself
6464
-e {toxinidir}/{env:PACKAGE_NAME}

0 commit comments

Comments
 (0)