Skip to content

Commit 5d6139a

Browse files
authored
remove python 3.5 config (#3022)
* remove python 3.5 config * Remove from noxfile * Update authoring guide
1 parent 919675f commit 5d6139a

File tree

6 files changed

+3
-111
lines changed

6 files changed

+3
-111
lines changed

.kokoro/python3.5/common.cfg

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

.kokoro/python3.5/continuous.cfg

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

.kokoro/python3.5/periodic.cfg

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

.kokoro/python3.5/presubmit.cfg

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

AUTHORING_GUIDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ No matter what, all samples must:
1919
1. Be either a web application or a runnable console application.
2020
1. Have a `requirements.txt` containing all of its third-party dependencies. All
2121
requirements must be pinned.
22-
1. Work in Python 2.7, 3.5, 3.6, and 3.7. App Engine Standard is exempt as it
23-
only supports 2.7. Our default version is currently Python 3.5.
22+
1. Work in Python 2.7, 3.6, and 3.7. App Engine Standard is exempt as it
23+
only supports 2.7. Our default version is currently Python 3.6.
2424
1. Have tests.
2525

2626
## Style & linting

noxfile-template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def py2(session, sample):
208208
_session_tests(session, sample)
209209

210210

211-
@nox.session(python=["3.5", "3.6", "3.7"])
211+
@nox.session(python=["3.6", "3.7"])
212212
@nox.parametrize("sample", NON_GAE_STANDARD_SAMPLES_PY3)
213213
def py3(session, sample):
214214
"""Runs py.test for a sample using Python 3.x"""

0 commit comments

Comments
 (0)