diff options
| author | Hugo <hugovk@users.noreply.github.com> | 2020-01-04 23:26:46 +0200 |
|---|---|---|
| committer | Hugo <hugovk@users.noreply.github.com> | 2020-01-04 23:30:15 +0200 |
| commit | bd6dd7ccaed477bf1f6f675f7ec13ccbf4383d90 (patch) | |
| tree | dbf5bc51675752a16c5ac253a84a88104dca5778 | |
| parent | 14f2b0dbca945c1483aa6f48878b6eceb154df39 (diff) | |
| download | python-magic-bd6dd7ccaed477bf1f6f675f7ec13ccbf4383d90.tar.gz | |
Add support for Python 3.7 and 3.8
| -rw-r--r-- | .travis.yml | 2 | ||||
| -rw-r--r-- | setup.py | 2 | ||||
| -rw-r--r-- | tox.ini | 2 |
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 @@ -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', ], ) @@ -3,6 +3,8 @@ envlist = coverage-clean, py27, py36, + py37, + py38, coverage-report |
