Skip to content

Commit

Permalink
Update additional Python 3.6 versions to 3.7 (web-platform-tests#39079)
Browse files Browse the repository at this point in the history
  • Loading branch information
foolip authored Mar 20, 2023
1 parent 8cf108d commit 91963db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/running-tests/from-local-system.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The tests are designed to be run from your local computer.
Running the tests requires `python`, `pip` and `virtualenv`, as well as updating
the system `hosts` file.

WPT requires Python 3.6 or higher.
WPT requires Python 3.7 or higher.

The required setup is different depending on your operating system.

Expand Down
2 changes: 1 addition & 1 deletion resources/test/tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39,py310
envlist = py37,py38,py39,py310
skipsdist=True

[testenv]
Expand Down
4 changes: 2 additions & 2 deletions wpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

if __name__ == "__main__":
import sys
if sys.version_info < (3, 6):
sys.stderr.write("wpt requires Python 3.6 or higher\n")
if sys.version_info < (3, 7):
sys.stderr.write("wpt requires Python 3.7 or higher\n")
sys.exit(1)

from tools.wpt import wpt
Expand Down

0 comments on commit 91963db

Please sign in to comment.