Skip to content

Commit

Permalink
fix: drop python 3.6 (#456)
Browse files Browse the repository at this point in the history
* fix: drop python 3.6

* remove testing/constraints-3.6.txt

* update version in .readthedocs.yml
  • Loading branch information
parthea authored Jun 11, 2024
1 parent 62d74e3 commit 5a7666c
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 17 deletions.
3 changes: 0 additions & 3 deletions .github/sync-repo-settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ branchProtectionRules:
requiredStatusCheckContexts:
- 'style-check'
- 'docs'
- 'unit (3.6, cpp)'
- 'unit (3.6, python)'
- 'unit (3.6, upb)'
- 'unit (3.7, cpp)'
- 'unit (3.7, python)'
- 'unit (3.7, upb)'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
variant: ['cpp', 'python', 'upb']
# TODO(https://github.com/googleapis/proto-plus-python/issues/389):
# Remove the 'cpp' implementation once support for Protobuf 3.x is dropped.
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ build:
image: latest
python:
pip_install: true
version: 3.6
version: 3.9
1 change: 0 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@


PYTHON_VERSIONS = [
"3.6",
"3.7",
"3.8",
"3.9",
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,14 @@
"google-api-core >= 1.31.5",
],
},
python_requires=">=3.6",
python_requires=">=3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
9 changes: 0 additions & 9 deletions testing/constraints-3.6.txt

This file was deleted.

0 comments on commit 5a7666c

Please sign in to comment.