Skip to content

Commit

Permalink
Add 3.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
amikrop committed Oct 11, 2020
1 parent e5ac4db commit b513bb5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ python:
- '3.6'
- '3.7'
- '3.8'
- '3.9-dev'
- 'pypy3.5'

install: pip install tox-travis
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Installation

The following Python versions are supported:

- CPython: 3.6, 3.7, 3.8
- CPython: 3.6, 3.7, 3.8, 3.9
- PyPy: 3.5

Install via `pip
Expand Down
2 changes: 1 addition & 1 deletion aiomixcloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from aiomixcloud.exceptions import MixcloudError, MixcloudOAuthError


__version__ = '1.0.5'
__version__ = '1.0.6'
__author__ = 'Aristotelis Mikropoulos <amikrop@gmail.com>'
__license__ = 'MIT'
__url__ = 'https://github.com/amikrop/aiomixcloud'
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,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
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{36, 37, 38, py3}, docs, lint, coverage
envlist = py{36, 37, 38, 39, py3}, docs, lint, coverage

[testenv]
deps = coverage
Expand Down

0 comments on commit b513bb5

Please sign in to comment.