1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-06 12:56:15 +02:00

Drop support for EOL Python 3.5

This commit is contained in:
Hugo van Kemenade 2020-09-08 21:00:20 +03:00
parent 090d7412cf
commit bcde89c882
5 changed files with 6 additions and 6 deletions

View File

@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macOS-latest]
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8]
include:
- os: ubuntu-latest
python-version: 3.8

View File

@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.5", "3.6", "3.7", "3.8"]
python-version: [ "3.6", "3.7", "3.8"]
os: [ubuntu-18.04, ubuntu-16.04, macos-latest, windows-2019]
include:
# PyPy3

View File

@ -7,7 +7,7 @@ arch:
- s390x
python:
- "3.5"
- "3.6"
- "3.8"
- "3.9-dev"

View File

@ -29,7 +29,8 @@ UltraJSON
:alt: Code style: Black
:target: https://github.com/psf/black
UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for Python 3.5+.
UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for
Python 3.6+.
To install it just run pip as usual:

View File

@ -10,7 +10,6 @@ Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: C
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
@ -83,6 +82,6 @@ setup(
"write_to_template": version_template,
},
setup_requires=["setuptools_scm"],
python_requires=">=3.5",
python_requires=">=3.6",
classifiers=[x for x in CLASSIFIERS.split("\n") if x],
)