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

Add Python 3.6

This commit is contained in:
Hugo 2017-12-26 00:48:27 +02:00
parent 7d0f4fb7e9
commit 9faac616a5
2 changed files with 7 additions and 0 deletions

View File

@ -6,6 +6,7 @@ python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install six blist unittest2 pytz
- python setup.py install

View File

@ -17,11 +17,16 @@ Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: C
Programming Language :: Python :: 2
Programming Language :: Python :: 2.5
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
""".splitlines()))
source_files = glob("./deps/double-conversion/double-conversion/*.cc")
@ -99,5 +104,6 @@ setup(
platforms=['any'],
url="http://www.esn.me",
cmdclass = {'build_ext': build_ext, 'build_clib': build_clib_without_warnings},
python_requires='>=2.5, !=3.0.*, !=3.1.*',
classifiers=CLASSIFIERS,
)