Skip to content

Commit

Permalink
Remove support for Python < 3.8
Browse files Browse the repository at this point in the history
The oldest python version currently supported is 3.9, so supporting 3.8
is still a nicety to users.

We previously didn't explicitly state the required python version in our
setup.py. However, this shouldn't affect users of old python versions,
who should get the latest ijson package that didn't state a
python_requires clause.

Signed-off-by: Rodrigo Tobar <[email protected]>
  • Loading branch information
rtobar committed Dec 29, 2024
1 parent 0f089d4 commit 7ba11fc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ def get_ijson_version():
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand All @@ -50,6 +47,7 @@ def get_ijson_version():
],
packages = find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.8",
)

# Check if the yajl library + headers are present
Expand Down

0 comments on commit 7ba11fc

Please sign in to comment.