Skip to content

Commit

Permalink
Merge pull request #11 from mgedmin/py39
Browse files Browse the repository at this point in the history
Add Python 3.9 support
  • Loading branch information
mgedmin authored Oct 29, 2020
2 parents 5f56f86 + 2179f10 commit 2a1c5c5
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 5 deletions.
17 changes: 13 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
language: python
dist: xenial
dist: focal
cache: pip
python:
- 2.7
- 3.6
- 3.7
- 3.8
- pypy
- 3.9
- pypy2
- pypy3
install:
- pip install pytest coverage coverage-python-version coveralls flake8
Expand All @@ -16,6 +18,13 @@ script:
- coverage report -m $([[ $TRAVIS_PYTHON_VERSION != pypy3 ]] && echo --fail-under=100)
after_success:
- coveralls

notifications:
email: false
cache: pip
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Changelog
1.9.3 (unreleased)
------------------

- Add support for Python 3.9.

- Drop support for Python 3.5.


Expand Down
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
ghcloneall
==========

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

.. image:: https://ci.appveyor.com/api/projects/status/github/mgedmin/ghcloneall?branch=master&svg=true
:target: https://ci.appveyor.com/project/mgedmin/ghcloneall


It's a script to clone/update all repos for a user/organization from GitHub.

Target audience: maintainers of large collections of projects (for example,
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,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 tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py36,py37,py38
envlist = py27,py36,py37,py38,py39

[testenv]
deps =
Expand Down

0 comments on commit 2a1c5c5

Please sign in to comment.