-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(gae): delete region tags from standard/migration/urlfetch and r…
…emove Python 2 refs (#13092) * chore(gae): add support for Python 3 to requirements-test.txt * docs(gae): delete region tags from standard/migration/urlfetch/async/main.py * chore(gae): add support for Python 3 to requirements-test.txt * docs(gae): delete region tags from standard/migration/urlfetch/requests/main.py * docs(gae): update README.md files to a current Python 3 sample, and remove Python 2 references
- Loading branch information
1 parent
ea307c0
commit 4f6ffd1
Showing
6 changed files
with
12 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
appengine/standard/migration/urlfetch/async/requirements-test.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
# pin pytest to 4.6.11 for Python2. | ||
pytest==4.6.11; python_version < '3.0' | ||
|
||
# pytest==8.3.4 and six==1.17.0 for Python3. | ||
pytest==8.3.4; python_version >= '3.0' | ||
six==1.17.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
appengine/standard/migration/urlfetch/requests/requirements-test.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
# pin pytest to 4.6.11 for Python2. | ||
pytest==4.6.11; python_version < '3.0' | ||
|
||
# pytest==8.3.4 and six==1.17.0 for Python3. | ||
pytest==8.3.4; python_version >= '3.0' | ||
six==1.17.0 |