Skip to content

Commit 3e44e04

Browse files
authored
Merge pull request #104 from cclauss/patch-1
Travis CI: Add Python 3.8 production release
2 parents 911b79f + 9ca2e21 commit 3e44e04

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.travis.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,25 @@ dist: xenial
22
language: python
33
python:
44
- '2.7'
5-
- '3.4'
65
- '3.5'
76
- '3.6'
87
- '3.7'
9-
- 3.7-dev
8+
- '3.8'
109
- 3.8-dev
1110
- nightly
1211
- pypy
1312
- pypy3
13+
addons:
14+
apt:
15+
packages:
16+
- pandoc
1417
install:
1518
- travis_retry pip install -r requirements.txt
1619
- travis_retry pip install coveralls
1720
script:
1821
- coverage run --source=jsonpointer tests.py
1922
after_script:
2023
- coveralls
21-
sudo: false
22-
addons:
23-
apt:
24-
packages:
25-
- pandoc
2624
before_deploy:
2725
- pip install -r requirements-dev.txt
2826
deploy:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@
5656
'Programming Language :: Python :: 2',
5757
'Programming Language :: Python :: 2.7',
5858
'Programming Language :: Python :: 3',
59-
'Programming Language :: Python :: 3.4',
6059
'Programming Language :: Python :: 3.5',
6160
'Programming Language :: Python :: 3.6',
6261
'Programming Language :: Python :: 3.7',
62+
'Programming Language :: Python :: 3.8',
6363
'Programming Language :: Python :: Implementation :: CPython',
6464
'Programming Language :: Python :: Implementation :: PyPy',
6565
'Topic :: Software Development :: Libraries',
@@ -79,7 +79,7 @@
7979
package_data={'': ['requirements.txt']},
8080
scripts=['bin/jsondiff', 'bin/jsonpatch'],
8181
classifiers=CLASSIFIERS,
82-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
82+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
8383
project_urls={
8484
'Website': 'https://github.com/stefankoegl/python-json-patch',
8585
'Repository': 'https://github.com/stefankoegl/python-json-patch.git',

0 commit comments

Comments
 (0)