Skip to content

Commit b42f7f1

Browse files
authored
Merge pull request #28 from keitheis/support_python_3_9
Support Python 3.9
2 parents 31282aa + 45bca07 commit b42f7f1

4 files changed

Lines changed: 11 additions & 16 deletions

File tree

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,17 @@ matrix:
66
include:
77
- python: 2.7
88
env: TOXENV=py27
9-
- python: 3.4
10-
env: TOXENV=py34
11-
- python: 3.5
12-
env: TOXENV=py35
139
- python: 3.6
1410
env: TOXENV=py36
1511
- python: 3.7
1612
env: TOXENV=py37
1713
- python: 3.8
1814
env: TOXENV=py38
15+
- python: 3.9
16+
env: TOXENV=py39
1917
- python: pypy
2018
env: TOXENV=pypy
21-
- python: 3.8
19+
- python: 3.9
2220
env: TOXENV=py2-cover,py3-cover,coverage
2321

2422
install:

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Alog
22
====
33

4-
.. image:: https://travis-ci.org/keitheis/alog.svg?branch=master
5-
:target: https://travis-ci.org/keitheis/alog
4+
.. image:: https://travis-ci.com/keitheis/alog.svg?branch=master
5+
:target: https://travis-ci.com/keitheis/alog
66

77
.. image:: https://codecov.io/gh/keitheis/alog/branch/master/graph/badge.svg
88
:target: https://codecov.io/gh/keitheis/alog

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setup(
2323
name='alog',
24-
version='1.1.0',
24+
version='1.2.0-dev',
2525
description='Your goto Python logging without panic on context swtich',
2626
long_description=README + '\n\n' + CHANGES,
2727
url='https://github.com/keitheis/alog',
@@ -35,14 +35,12 @@
3535
'Topic :: System :: Logging',
3636
'Topic :: Software Development',
3737
'Programming Language :: Python',
38-
'Programming Language :: Python :: 2.6',
3938
'Programming Language :: Python :: 2.7',
4039
'Programming Language :: Python :: 3',
41-
'Programming Language :: Python :: 3.4',
42-
'Programming Language :: Python :: 3.5',
4340
'Programming Language :: Python :: 3.6',
4441
'Programming Language :: Python :: 3.7',
4542
'Programming Language :: Python :: 3.8',
43+
'Programming Language :: Python :: 3.9',
4644
"Programming Language :: Python :: Implementation :: CPython",
4745
"Programming Language :: Python :: Implementation :: PyPy",
4846
],

tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
[tox]
22
envlist =
3-
py27,py34,py35,py36,py37,pypy,
3+
py27,py36,py37,py38,py39,pypy,
44
{py2,py3}-cover,coverage
55

66
[testenv]
77
# Most of these are defaults but if you specify any you can't fall back
88
# to defaults for others.
99
basepython =
1010
py27: python2.7
11-
py34: python3.4
12-
py35: python3.5
1311
py36: python3.6
1412
py37: python3.7
1513
py38: python3.8
14+
py39: python3.9
1615
pypy: pypy
1716
py2: python2.7
18-
py3: python3.8
17+
py3: python3.9
1918

2019
passenv = TOXENV CI TRAVIS TRAVIS_*
2120
commands =
@@ -40,7 +39,7 @@ setenv =
4039
COVERAGE_FILE=.coverage.py3
4140

4241
[testenv:coverage]
43-
basepython = python3.8
42+
basepython = python3.9
4443
commands =
4544
coverage erase
4645
coverage combine

0 commit comments

Comments
 (0)