summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2019-07-28 18:02:00 +0200
committerGitHub <noreply@github.com>2019-07-28 18:02:00 +0200
commit911b79f86210254f6a877faae977d9a0472e2191 (patch)
tree371ef0be664bef498ac7fa03b76452260a61674a
parent33e630e6c50fedce419ef27e88ad5c17ad7837ba (diff)
parentabf27f29f22fb421a5cf36e6dbb9cd7b3d08dc59 (diff)
downloadpython-json-patch-911b79f86210254f6a877faae977d9a0472e2191.tar.gz
Merge pull request #100 from stefankoegl/python-3.8v1.24
Support Python 3.7, test with Python 3.8 dev
-rw-r--r--.travis.yml4
-rw-r--r--setup.py1
2 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 12712a3..b6c5816 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,13 @@
+dist: xenial
language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
-- 3.6-dev
+- '3.7'
- 3.7-dev
+- 3.8-dev
- nightly
- pypy
- pypy3
diff --git a/setup.py b/setup.py
index 1397f9a..66f3319 100644
--- a/setup.py
+++ b/setup.py
@@ -59,6 +59,7 @@ CLASSIFIERS = [
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',