summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2020-01-04 23:26:46 +0200
committerHugo <hugovk@users.noreply.github.com>2020-01-04 23:30:15 +0200
commitbd6dd7ccaed477bf1f6f675f7ec13ccbf4383d90 (patch)
treedbf5bc51675752a16c5ac253a84a88104dca5778
parent14f2b0dbca945c1483aa6f48878b6eceb154df39 (diff)
downloadpython-magic-bd6dd7ccaed477bf1f6f675f7ec13ccbf4383d90.tar.gz
Add support for Python 3.7 and 3.8
-rw-r--r--.travis.yml2
-rw-r--r--setup.py2
-rw-r--r--tox.ini2
3 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 226dcf4..00f123d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,6 +5,8 @@ cache: pip
python:
- "2.7"
- "3.6"
+ - "3.7"
+ - "3.8"
install:
- pip install coverage
diff --git a/setup.py b/setup.py
index 6dcdeac..eabeb0e 100644
--- a/setup.py
+++ b/setup.py
@@ -33,6 +33,8 @@ setup(name='python-magic',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
],
)
diff --git a/tox.ini b/tox.ini
index 25fc15b..b45e21d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,6 +3,8 @@ envlist =
coverage-clean,
py27,
py36,
+ py37,
+ py38,
coverage-report