8000 fix: drop python 3.6 (#456) · googleapis/proto-plus-python@5a7666c · GitHub
[go: up one dir, main page]

Skip to content

Commit 5a7666c

Browse files
authored
fix: drop python 3.6 (#456)
* fix: drop python 3.6 * remove testing/constraints-3.6.txt * update version in .readthedocs.yml
1 parent 62d74e3 commit 5a7666c

File tree

6 files changed

+3
-17
lines changed

6 files changed

+3
-17
lines changed

.github/sync-repo-settings.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ branchProtectionRules:
77
requiredStatusCheckContexts:
88
- 'style-check'
99
- 'docs'
10-
- 'unit (3.6, cpp)'
11-
- 'unit (3.6, python)'
12-
- 'unit (3.6, upb)'
1310
- 'unit (3.7, cpp)'
1411
- 'unit (3.7, python)'
1512
- 'unit (3.7, upb)'

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-20.04
4343
strategy:
4444
matrix:
45-
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
45+
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
4646
variant: ['cpp', 'python', 'upb']
4747
# TODO(https://github.com/googleapis/proto-plus-python/issues/389):
4848
# Remove the 'cpp' implementation once support for Protobuf 3.x is dropped.

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ build:
33
image: latest
44
python:
55
pip_install: true
6-
version: 3.6
6+
version: 3.9

noxfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323

2424
PYTHON_VERSIONS = [
25-
"3.6",
2625
"3.7",
2726
"3.8",
2827
"3.9",

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,14 @@
4848
"google-api-core >= 1.31.5",
4949
],
5050
},
51-
python_requires=">=3.6",
51+
python_requires=">=3.7",
5252
classifiers=[
5353
"Development Status :: 5 - Production/Stable",
5454
"Environment :: Console",
5555
"Intended Audience :: Developers",
5656
"License :: OSI Approved :: Apache Software License",
5757
"Operating System :: POSIX",
5858
"Programming Language :: Python :: 3",
59-
"Programming Language :: Python :: 3.6",
6059
"Programming Language :: Python :: 3.7",
6160
"Programming Language :: Python :: 3.8",
6261
"Programming Language :: Python :: 3.9",

testing/constraints-3.6.txt

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

0 commit comments

Comments
 (0)
0