Skip to content

Commit 5f8ed9d

Browse files
authored
update version to 0.1.11 (#23)
Bump version and update travis build to include 3.8 and drop the old 3.5 version.
1 parent 401e886 commit 5f8ed9d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ matrix:
44
include:
55
- python: 2.7
66
env: TOXENV=py27
7-
- python: 3.5
8-
env: TOXENV=py35
97
- python: 3.6
108
env: TOXENV=py36
119
- python: 3.7
1210
env: TOXENV=py37
11+
- python: 3.8
12+
env: TOXENV=py38
1313

1414
dist: xenial
1515

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def read(fname):
1212

1313
setup(
1414
name='netflix-spectator-py',
15-
version='0.1.10',
15+
version='0.1.11',
1616
description='Python library for reporting metrics to Atlas.',
1717
long_description=read('README.md'),
1818
author='Brian Harrington',
@@ -40,8 +40,8 @@ def read(fname):
4040
'Programming Language :: Python :: 2',
4141
'Programming Language :: Python :: 2.7',
4242
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.5',
4443
'Programming Language :: Python :: 3.6',
4544
'Programming Language :: Python :: 3.7',
45+
'Programming Language :: Python :: 3.8',
4646
]
4747
)

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tox]
2-
envlist = py{27,35,36,37}
2+
envlist = py{27,36,37,38}
33

44
[testenv]
55
basepython =
66
py27: python2.7
7-
py35: python3.5
87
py36: python3.6
98
py37: python3.7
9+
py38: python3.8
1010
deps =
1111
check-manifest
1212
readme_renderer

0 commit comments

Comments
 (0)