Skip to content

Commit b3b8ed2

Browse files
authored
Merge pull request #3959 from hippo91/toward_python39
Toward python39
2 parents 59af51b + bacbf62 commit b3b8ed2

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
env: TOXENV=py37
2626
- python: 3.8
2727
env: TOXENV=py38
28+
- python: 3.9
29+
env: TOXENV=py39
2830
- stage: tests-pypy
2931
python: pypy3
3032
env: TOXENV=pypy

pylint/__pkginfo__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
version += "-dev" + str(dev_version)
4141

4242
install_requires = [
43-
"astroid>=2.4.0,<=2.5",
43+
"astroid>=2.4.0,<=2.6",
4444
"isort>=4.2.5,<6",
4545
"mccabe>=0.6,<0.7",
4646
"toml>=0.7.1",
@@ -72,6 +72,7 @@
7272
"Programming Language :: Python :: 3.6",
7373
"Programming Language :: Python :: 3.7",
7474
"Programming Language :: Python :: 3.8",
75+
"Programming Language :: Python :: 3.9",
7576
"Programming Language :: Python :: 3 :: Only",
7677
"Programming Language :: Python :: Implementation :: CPython",
7778
"Programming Language :: Python :: Implementation :: PyPy",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[testoptions]
22
min_pyver=3.5
3+
max_pyver=3.8

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 2.4
3-
envlist = py35, py36, py37, py38, pypy, pylint, benchmark
3+
envlist = py35, py36, py37, py38, py39, pypy, pylint, benchmark
44
skip_missing_interpreters = true
55

66
[testenv:pylint]

0 commit comments

Comments
 (0)