Skip to content

Commit 71bdeed

Browse files
committed
Drop support for EOL Python 3.3
1 parent 4ff7398 commit 71bdeed

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: python
22
python:
33
- '2.7'
4-
- '3.3'
54
- '3.4'
65
- '3.5'
76
- '3.6'

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ python-json-patch
77
=================
88

99
*python-json-patch* is a Python library for applying JSON patches (`RFC 6902
10-
<http://tools.ietf.org/html/rfc6902>`_). Python 2.7 and 3.3-3.6 are
10+
<http://tools.ietf.org/html/rfc6902>`_). Python 2.7 and 3.4+ are
1111
supported. Tests are run on both CPython and PyPy.
1212

1313

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
'Programming Language :: Python :: 2',
5959
'Programming Language :: Python :: 2.7',
6060
'Programming Language :: Python :: 3',
61-
'Programming Language :: Python :: 3.3',
6261
'Programming Language :: Python :: 3.4',
6362
'Programming Language :: Python :: 3.5',
6463
'Programming Language :: Python :: 3.6',
@@ -81,5 +80,6 @@
8180
package_data={'': ['requirements.txt']},
8281
scripts=['bin/jsondiff', 'bin/jsonpatch'],
8382
classifiers=CLASSIFIERS,
83+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
8484
**OPTIONS
8585
)

0 commit comments

Comments
 (0)