Skip to content

Commit

Permalink
Merge pull request #104 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Travis CI: Add Python 3.8 production release
  • Loading branch information
stefankoegl committed Nov 13, 2019
2 parents 911b79f + 9ca2e21 commit 3e44e04
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
12 changes: 5 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,25 @@ 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
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:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@
'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',
Expand All @@ -79,7 +79,7 @@
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',
Expand Down

0 comments on commit 3e44e04

Please sign in to comment.