Skip to content

Commit 3101768

Browse files
JelleZijlstragvanrossum
authored andcommitted
drop 3.2 (#1213)
Closes #1145.
1 parent 4e22318 commit 3101768

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ matrix:
1313
env: TEST_CMD="./tests/pytype_test.py --num-parallel=4"
1414

1515
install:
16-
# pytype needs py-2.7, mypy needs py-3.2+. Additional logic in runtests.py
16+
# pytype needs py-2.7, mypy needs py-3.3+. Additional logic in runtests.py
1717
- if [[ $TRAVIS_PYTHON_VERSION == '3.6-dev' ]]; then pip install -U flake8==3.3.0 flake8-bugbear>=17.3.0 flake8-pyi>=17.1.0; fi
1818
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then pip install -U git+git://github.com/python/mypy git+git://github.com/python/typed_ast; fi
1919
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install -U git+git://github.com/google/pytype; fi

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ For information on how to use `typeshed`, read below. Information for
1111
contributors can be found in [CONTRIBUTING.md](CONTRIBUTING.md). **Please read
1212
it before submitting pull requests.**
1313

14+
Typeshed supports Python versions 2.7 and 3.3 and up.
15+
1416
## Format
1517

1618
Each Python module is represented by a `.pyi` "stub". This is a normal Python

tests/mypy_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def main():
8383
print("Cannot import mypy. Did you install it?")
8484
sys.exit(1)
8585

86-
versions = [(3, 6), (3, 5), (3, 4), (3, 3), (3, 2), (2, 7)]
86+
versions = [(3, 6), (3, 5), (3, 4), (3, 3), (2, 7)]
8787
if args.python_version:
8888
versions = [v for v in versions
8989
if any(('%d.%d' % v).startswith(av) for av in args.python_version)]

0 commit comments

Comments
 (0)