Skip to content

Commit

Permalink
remove python 3.5 config (#3022)
Browse files Browse the repository at this point in the history
* remove python 3.5 config

* Remove from noxfile

* Update authoring guide
  • Loading branch information
leahecole authored Mar 4, 2020
1 parent 919675f commit 5d6139a
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 111 deletions.
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

0 comments on commit 5d6139a

Please sign in to comment.