Skip to content

Commit

Permalink
Add support for Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 5, 2020
1 parent 6549664 commit a4a5392
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,7 @@ python:
- 3.6
- 3.7
- 3.8
- 3.9
- pypy3.6-7.1.1
matrix:
include:
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
@@ -1,9 +1,11 @@
Changelog
=========

0.15.2 (unreleased)
0.16.0 (unreleased)
-------------------

- Add support for Python 3.9.

- Python 3.10 support: sort 3.10 after 3.9, quote "3.10" when
updating YAML files so it doesn't get treated as a floating point
number (`GH #19
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -7,6 +7,7 @@ environment:
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python39"

init:
- "echo %PYTHON%"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -54,6 +54,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
Expand Down
2 changes: 1 addition & 1 deletion src/check_python_versions/__init__.py
Expand Up @@ -12,4 +12,4 @@
"""

__author__ = 'Marius Gedminas <marius@gedmin.as>'
__version__ = '0.15.2.dev0'
__version__ = '0.16.0.dev0'
2 changes: 1 addition & 1 deletion src/check_python_versions/versions.py
Expand Up @@ -11,7 +11,7 @@

MAX_PYTHON_1_VERSION = 6 # i.e. 1.6
MAX_PYTHON_2_VERSION = 7 # i.e. 2.7
CURRENT_PYTHON_3_VERSION = 8 # i.e. 3.8
CURRENT_PYTHON_3_VERSION = 9 # i.e. 3.9

MAX_MINOR_FOR_MAJOR = {
1: MAX_PYTHON_1_VERSION,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = flake8,py36,py37,py38,mypy,isort,coverage
envlist = py36,py37,py38,py39,flake8,mypy,isort,coverage

[testenv]
deps = pytest
Expand Down

0 comments on commit a4a5392

Please sign in to comment.