Skip to content

Commit

Permalink
Add support for Python 3.9. Drop support for Python 3.5. Update CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikmatko committed Oct 31, 2020
1 parent f004c52 commit 388d38f
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: python
dist: bionic
dist: focal
python:
- 3.5
- 3.6
- 3.7-dev
- 3.7
- 3.8
- 3.9
services:
- rabbitmq
env:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.5
FROM python:3.9

WORKDIR /usr/src/app

Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changelog
Next release
------------

* Add support for Python 3.9.
* Drop support for Python 3.5.
* Fix annoying auth method warning because of a wrong defined default argument (closes #214).

Aioamqp 0.14.0
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Aioamqp library is a pure-Python implementation of the AMQP 0.9.1 protocol using
Prerequisites
-------------

Aioamqp works only with python >= 3.5 using asyncio library.
Aioamqp works only with python >= 3.6 using asyncio library.

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[bdist_wheel]
python-tag = py35.py36.py37.py38
python-tag = py36.py37.py38.py39
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
platforms='all',
license='BSD'
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 = py35, py36, py37, py38
envlist = py36, py37, py38, py39
skipsdist = true
skip_missing_interpreters = true

Expand Down

0 comments on commit 388d38f

Please sign in to comment.