summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2019-11-13 20:49:06 +0100
committerGitHub <noreply@github.com>2019-11-13 20:49:06 +0100
commit3e44e04f640a1c10b68d00d2b9a6af0c397f06d7 (patch)
tree14e9a9abab702fbd72862d29a432ade25f72a6b9
parent911b79f86210254f6a877faae977d9a0472e2191 (diff)
parent9ca2e2139e35b717f970a9679105cbdaed54636f (diff)
downloadpython-json-patch-3e44e04f640a1c10b68d00d2b9a6af0c397f06d7.tar.gz
Merge pull request #104 from cclauss/patch-1
Travis CI: Add Python 3.8 production release
-rw-r--r--.travis.yml12
-rw-r--r--setup.py4
2 files changed, 7 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index b6c5816..6a02844 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,15 +2,18 @@ dist: xenial
language: python
python:
- '2.7'
-- '3.4'
- '3.5'
- '3.6'
- '3.7'
-- 3.7-dev
+- '3.8'
- 3.8-dev
- nightly
- pypy
- pypy3
+addons:
+ apt:
+ packages:
+ - pandoc
install:
- travis_retry pip install -r requirements.txt
- travis_retry pip install coveralls
@@ -18,11 +21,6 @@ script:
- coverage run --source=jsonpointer tests.py
after_script:
- coveralls
-sudo: false
-addons:
- apt:
- packages:
- - pandoc
before_deploy:
- pip install -r requirements-dev.txt
deploy:
diff --git a/setup.py b/setup.py
index 66f3319..b01af80 100644
--- a/setup.py
+++ b/setup.py
@@ -56,10 +56,10 @@ CLASSIFIERS = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',
@@ -79,7 +79,7 @@ setup(name=PACKAGE,
package_data={'': ['requirements.txt']},
scripts=['bin/jsondiff', 'bin/jsonpatch'],
classifiers=CLASSIFIERS,
- python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
+ python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
project_urls={
'Website': 'https://github.com/stefankoegl/python-json-patch',
'Repository': 'https://github.com/stefankoegl/python-json-patch.git',