1
0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-09-20 19:32:05 +02:00

Drop support for EOL Python 3.4

This commit is contained in:
Hugo 2020-02-14 20:59:47 +02:00
parent 5a11e9d95b
commit 86879e0c2b
3 changed files with 2 additions and 4 deletions

View File

@ -2,7 +2,6 @@ sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:

View File

@ -12,7 +12,7 @@ UltraJSON
:alt: Travis CI build status
:target: https://travis-ci.org/esnme/ultrajson
UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for Python 2.7 and 3.4+.
UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for Python 2.7 and 3.5+.
For a more painless day to day C/C++ JSON decoder experience please checkout ujson4c_, based on UltraJSON.

View File

@ -18,7 +18,6 @@ Programming Language :: C
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
""".splitlines()))
@ -98,6 +97,6 @@ setup(
platforms=['any'],
url="http://www.esn.me",
cmdclass = {'build_ext': build_ext, 'build_clib': build_clib_without_warnings},
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.*',
classifiers=CLASSIFIERS,
)