Skip to content

Commit

Permalink
Merge pull request #28 from mgedmin/py39
Browse files Browse the repository at this point in the history
Add Python 3.9 support
  • Loading branch information
mgedmin committed Oct 29, 2020
2 parents 36f204a + f9d0808 commit b058a97
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
12 changes: 11 additions & 1 deletion .travis.yml
@@ -1,9 +1,11 @@
language: python
cache: pip
python:
- 2.7
- 3.6
- 3.7
- 3.8
- 3.9
- nightly
- pypy
- pypy3
Expand All @@ -20,5 +22,13 @@ script:
- coverage report -m --fail-under=$(if [[ $TRAVIS_PYTHON_VERSION == pypy ]]; then printf 77; else printf 100; fi)
after_success:
- coveralls

notifications:
email: false
irc:
channels:
- "chat.freenode.net##mgedmin"
on_success: change
on_failure: always
template:
# ping my nick so I get a pushbullet notification on my phone
- "mgedmin: %{repository_name} (%{branch}) build %{result}: %{build_url}"
2 changes: 2 additions & 0 deletions CHANGES.rst
Expand Up @@ -4,6 +4,8 @@ Changelog
1.12.1 (unreleased)
-------------------

- Add support for Python 3.9.

- Drop support for Python 3.5.


Expand Down
4 changes: 2 additions & 2 deletions README.rst
@@ -1,8 +1,8 @@
profilehooks
============

.. image:: https://travis-ci.org/mgedmin/profilehooks.svg?branch=master
:target: https://travis-ci.org/mgedmin/profilehooks
.. image:: https://travis-ci.com/mgedmin/profilehooks.svg?branch=master
:target: https://travis-ci.com/mgedmin/profilehooks

.. image:: https://ci.appveyor.com/api/projects/status/github/mgedmin/profilehooks?branch=master&svg=true
:target: https://ci.appveyor.com/project/mgedmin/profilehooks
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -8,6 +8,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 @@ -36,6 +36,7 @@ def read(filename):
'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 tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py36,py37,py38,pypy,pypy3
envlist = py27,py36,py37,py38,py39,pypy,pypy3

[testenv]
commands =
Expand Down

0 comments on commit b058a97

Please sign in to comment.