Skip to content

Commit

Permalink
Add Python 3.12 to the supported versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ateska committed Mar 22, 2024
1 parent 8e4baba commit 303fc91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions build-linux-wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ rm -rf build cysimdjson.egg-info
/opt/python/cp311-cp311/bin/pip3 install Cython wheel
/opt/python/cp311-cp311/bin/python3 setup.py bdist_wheel

rm -rf build cysimdjson.egg-info
/opt/python/cp312-cp312/bin/pip3 install Cython wheel
/opt/python/cp312-cp312/bin/python3 setup.py bdist_wheel

cd /cysimdjson/dist
find . -name "cysimdjson-*-linux_x86_64.whl" | xargs -n 1 auditwheel repair -w /cysimdjson/dist
rm cysimdjson-*-linux_x86_64.whl
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

setup(
name='cysimdjson',
version="23.08",
version="24.12",
description='High-speed JSON parser',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -46,6 +46,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
Expand Down

0 comments on commit 303fc91

Please sign in to comment.