diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6361195e1..903e606ea 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -27,8 +27,9 @@ it takes a bit longer. For more details, read below. To reformat the code, check for common problems, and run the tests, you need to prepare a [virtual environment](https://docs.python.org/3/tutorial/venv.html) -with the necessary libraries installed. To do this, run: +with the necessary libraries installed using Python 3.8 or newer. +To do this, run: ``` $ python3 -m venv .venv3 $ source .venv3/bin/activate diff --git a/requirements-tests-py3.txt b/requirements-tests-py3.txt index 7005540e6..390f04b33 100644 --- a/requirements-tests-py3.txt +++ b/requirements-tests-py3.txt @@ -1,6 +1,5 @@ mypy==0.910 pytype==2021.11.2 -typed-ast==1.4.3 black==21.9b0 flake8==4.0.1 flake8-bugbear==21.9.2 diff --git a/stubs/typed-ast/METADATA.toml b/stubs/typed-ast/METADATA.toml index 6d3b92238..97ceca8aa 100644 --- a/stubs/typed-ast/METADATA.toml +++ b/stubs/typed-ast/METADATA.toml @@ -1 +1 @@ -version = "1.4.*" +version = "1.5.*" diff --git a/tests/README.md b/tests/README.md index 5d5794947..37e48381e 100644 --- a/tests/README.md +++ b/tests/README.md @@ -13,7 +13,7 @@ objects at runtime. objects at runtime. To run the tests, follow the [setup instructions](../CONTRIBUTING.md#preparing-the-environment) -in the `CONTRIBUTING.md` document. +in the `CONTRIBUTING.md` document. In particular, we recommend running with Python 3.8 or newer. ## mypy\_test.py