Skip to content

Commit dd03639

Browse files
committed
drop Python 3.7
1 parent 45e1150 commit dd03639

File tree

17 files changed

+9
-109
lines changed

17 files changed

+9
-109
lines changed

.github/sync-repo-settings.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ branchProtectionRules:
1111
# No Kokoro: the following are Github actions
1212
- 'lint'
1313
- 'mypy'
14-
- 'unit-3.7'
1514
- 'unit-3.8'
1615
- 'unit-3.9'
1716
- 'unit-3.10'
@@ -24,15 +23,13 @@ branchProtectionRules:
2423
- 'unit_wo_grpc-3.12'
2524
- 'unit_wo_grpc-3.13'
2625
- 'unit_wo_grpc-3.14'
27-
- 'unit_w_prerelease_deps-3.7'
2826
- 'unit_w_prerelease_deps-3.8'
2927
- 'unit_w_prerelease_deps-3.9'
3028
- 'unit_w_prerelease_deps-3.10'
3129
- 'unit_w_prerelease_deps-3.11'
3230
- 'unit_w_prerelease_deps-3.12'
3331
- 'unit_w_prerelease_deps-3.13'
3432
- 'unit_w_prerelease_deps-3.14'
35-
- 'unit_w_async_rest_extra-3.7'
3633
- 'unit_w_async_rest_extra-3.8'
3734
- 'unit_w_async_rest_extra-3.9'
3835
- 'unit_w_async_rest_extra-3.10'

.github/workflows/unittest.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
matrix:
1717
option: ["", "_wo_grpc", "_w_prerelease_deps", "_w_async_rest_extra"]
1818
python:
19-
- "3.7"
2019
- "3.8"
2120
- "3.9"
2221
- "3.10"
@@ -25,8 +24,6 @@ jobs:
2524
- "3.13"
2625
- "3.14"
2726
exclude:
28-
- option: "_wo_grpc"
29-
python: 3.7
3027
- option: "_wo_grpc"
3128
python: 3.8
3229
- option: "_wo_grpc"

.kokoro/samples/python3.7/common.cfg

Lines changed: 0 additions & 40 deletions
This file was deleted.

.kokoro/samples/python3.7/continuous.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

.kokoro/samples/python3.7/periodic-head.cfg

Lines changed: 0 additions & 11 deletions
This file was deleted.

.kokoro/samples/python3.7/periodic.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

.kokoro/samples/python3.7/presubmit.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

.kokoro/test-samples-impl.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ export PYTHONUNBUFFERED=1
3333
env | grep KOKORO
3434

3535
# Install nox
36-
# `virtualenv==20.26.6` is added for Python 3.7 compatibility
37-
python3.9 -m pip install --upgrade --quiet nox virtualenv==20.26.6
36+
python3.9 -m pip install --upgrade --quiet nox
3837

3938
# Use secrets acessor service account to get secrets
4039
if [[ -f "${KOKORO_GFILE_DIR}/secrets_viewer_service_account.json" ]]; then

CONTRIBUTING.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In order to add a feature:
2121
documentation.
2222

2323
- The feature must work fully on the following CPython versions:
24-
3.7, 3.8, 3.9, 3.10, 3.11, 3.12 and 3.13 on both UNIX and Windows.
24+
3.8, 3.9, 3.10, 3.11, 3.12 and 3.13 on both UNIX and Windows.
2525

2626
- The feature must not add unnecessary dependencies (where
2727
"unnecessary" is of course subjective, but new dependencies should
@@ -197,15 +197,13 @@ Supported Python Versions
197197

198198
We support:
199199

200-
- `Python 3.7`_
201200
- `Python 3.8`_
202201
- `Python 3.9`_
203202
- `Python 3.10`_
204203
- `Python 3.11`_
205204
- `Python 3.12`_
206205
- `Python 3.13`_
207206

208-
.. _Python 3.7: https://docs.python.org/3.7/
209207
.. _Python 3.8: https://docs.python.org/3.8/
210208
.. _Python 3.9: https://docs.python.org/3.9/
211209
.. _Python 3.10: https://docs.python.org/3.10/

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ common helpers used by all Google API clients. For more information, see the
1616

1717
Supported Python Versions
1818
-------------------------
19-
Python >= 3.7
19+
Python >= 3.8
2020

2121

2222
Unsupported Python Versions

0 commit comments

Comments
 (0)