Skip to content

Commit 58b4160

Browse files
committed
update CI and project requirements
1 parent bbcfccd commit 58b4160

5 files changed

Lines changed: 12 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
os: linux
12
language: python
2-
sudo: false # Since this is an older project, this is not the default.
33
cache: pip
44
dist: xenial
55
python:
@@ -8,6 +8,7 @@ python:
88
- "3.5"
99
- "3.6"
1010
- "3.7"
11+
- "3.8"
1112
install:
1213
- pip install -U pip setuptools
1314
- pip install tox-travis

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 4.1.0.17
2+
2020-11-16
3+
- Remove deprecation warning for collections module
4+
15
Version 4.1.0.16
26
2019-09-17
37
- [#96] Fix problem when installing from Python 2.7

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@ tag = True
99

1010
[bumpversion:file:docs/index.rst]
1111

12+
[metadata]
13+
license_file = LICENSE.txt
14+
1215
[bdist_wheel]
1316
universal = True

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def get_long_description():
6565
"Programming Language :: Python :: 3.5",
6666
"Programming Language :: Python :: 3.6",
6767
"Programming Language :: Python :: 3.7",
68+
"Programming Language :: Python :: 3.8",
6869
"Development Status :: 4 - Beta",
6970
"Intended Audience :: Developers",
7071
"License :: OSI Approved :: BSD License",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py34, py35, py36, py37, docs, packaging
2+
envlist = py27, py34, py35, py36, py37, py38, docs, packaging
33

44
[testenv]
55
commands =
@@ -25,3 +25,4 @@ python =
2525
3.5: py35
2626
3.6: py36, docs, packaging
2727
3.7: py37
28+
3.8: py38

0 commit comments

Comments
 (0)