Skip to content

Commit 7eb8484

Browse files
committed
Merge branch 'master' into omit_type_checking
2 parents a993d91 + cd261ab commit 7eb8484

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ matrix:
1010
- python: pypy3
1111
- python: 3.7
1212
dist: xenial
13+
- python: 3.8
14+
dist: xenial
1315
- python: nightly
1416
dist: xenial
1517
# TODO: https://bugs.python.org/issue40334

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ parsing the source file, not importing it, so it is safe to use on
99
modules with side effects. It's also much faster.
1010

1111
It is `available on PyPI <https://pypi.org/project/pyflakes/>`_
12-
and it supports all active versions of Python: 2.7 and 3.4 to 3.7.
12+
and it supports all active versions of Python: 2.7 and 3.4 to 3.8.
1313

1414

1515

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def get_long_description():
5858
"Programming Language :: Python :: 3.5",
5959
"Programming Language :: Python :: 3.6",
6060
"Programming Language :: Python :: 3.7",
61+
"Programming Language :: Python :: 3.8",
6162
"Programming Language :: Python :: Implementation :: CPython",
6263
"Programming Language :: Python :: Implementation :: PyPy",
6364
"Topic :: Software Development",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
skip_missing_interpreters = True
33
envlist =
4-
py27,py34,py35,py36,py37,pypy,pypy3
4+
py27,py34,py35,py36,py37,py38,pypy,pypy3
55

66
[testenv]
77
deps = flake8==3.6.0

0 commit comments

Comments
 (0)