Skip to content

Toward python39 #3959

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Dec 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38
- python: 3.9
env: TOXENV=py39
- stage: tests-pypy
python: pypy3
env: TOXENV=pypy
Expand Down
3 changes: 2 additions & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
version += "-dev" + str(dev_version)

install_requires = [
"astroid>=2.4.0,<=2.5",
"astroid>=2.4.0,<=2.6",
"isort>=4.2.5,<6",
"mccabe>=0.6,<0.7",
"toml>=0.7.1",
Expand Down Expand Up @@ -72,6 +72,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
Expand Down
1 change: 1 addition & 0 deletions tests/functional/s/star_needs_assignment_target_py35.rc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[testoptions]
min_pyver=3.5
max_pyver=3.8
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 2.4
envlist = py35, py36, py37, py38, pypy, pylint, benchmark
envlist = py35, py36, py37, py38, py39, pypy, pylint, benchmark
skip_missing_interpreters = true

[testenv:pylint]
Expand Down