Skip to content

remove python 3.5 config #3022

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 0 additions & 45 deletions .kokoro/python3.5/common.cfg

This file was deleted.

21 changes: 0 additions & 21 deletions .kokoro/python3.5/continuous.cfg

This file was deleted.

21 changes: 0 additions & 21 deletions .kokoro/python3.5/periodic.cfg

This file was deleted.

21 changes: 0 additions & 21 deletions .kokoro/python3.5/presubmit.cfg

This file was deleted.

4 changes: 2 additions & 2 deletions AUTHORING_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ No matter what, all samples must:
1. Be either a web application or a runnable console application.
1. Have a `requirements.txt` containing all of its third-party dependencies. All
requirements must be pinned.
1. Work in Python 2.7, 3.5, 3.6, and 3.7. App Engine Standard is exempt as it
only supports 2.7. Our default version is currently Python 3.5.
1. Work in Python 2.7, 3.6, and 3.7. App Engine Standard is exempt as it
only supports 2.7. Our default version is currently Python 3.6.
1. Have tests.

## Style & linting
Expand Down
2 changes: 1 addition & 1 deletion noxfile-template.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def py2(session, sample):
_session_tests(session, sample)


@nox.session(python=["3.5", "3.6", "3.7"])
@nox.session(python=["3.6", "3.7"])
@nox.parametrize("sample", NON_GAE_STANDARD_SAMPLES_PY3)
def py3(session, sample):
"""Runs py.test for a sample using Python 3.x"""
Expand Down