Skip to content

Commit a009e1c

Browse files
committed
Update setup, tox, and travis to py3.8; Bump version
1 parent 2ee8e37 commit a009e1c

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ matrix:
1313
- python: 3.6
1414
env: TOXENV=py36
1515
- python: 3.7
16-
sudo: required
17-
dist: xenial
1816
env: TOXENV=py37
17+
- python: 3.8
18+
env: TOXENV=py38
1919
- python: pypy
2020
env: TOXENV=pypy
21-
- python: 3.6
21+
- python: 3.8
2222
env: TOXENV=py2-cover,py3-cover,coverage
2323

2424
install:

setup.py

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

2222
setup(
2323
name='alog',
24-
version='1.0.0',
24+
version='1.1.0',
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',
@@ -42,6 +42,7 @@
4242
'Programming Language :: Python :: 3.5',
4343
'Programming Language :: Python :: 3.6',
4444
'Programming Language :: Python :: 3.7',
45+
'Programming Language :: Python :: 3.8',
4546
"Programming Language :: Python :: Implementation :: CPython",
4647
"Programming Language :: Python :: Implementation :: PyPy",
4748
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ basepython =
1212
py35: python3.5
1313
py36: python3.6
1414
py37: python3.7
15+
py38: python3.8
1516
pypy: pypy
1617
py2: python2.7
17-
py3: python3.6
18+
py3: python3.8
1819

1920
passenv = TOXENV CI TRAVIS TRAVIS_*
2021
commands =

0 commit comments

Comments
 (0)