Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ jobs:
- run:
name: Build the Linux aarch64 wheels.
environment:
CIBW_ENABLE: >
pypy
CIBW_SKIP: >
cp3??t-*
CIBW_BEFORE_BUILD_LINUX: >
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
CIBW_ENVIRONMENT_LINUX: >
PATH="$HOME/.cargo/bin:$PATH"
TWINE_USERNAME: __token__
command: |
# install deps
python3 -m pip install --user cibuildwheel==2.23.0 twine
python3 -m pip install --user cibuildwheel==3.2.1 twine
# build wheels
python3 -m cibuildwheel --output-dir wheelhouse
# upload wheels to PyPI
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,14 @@ jobs:
cat "$GITHUB_ENV"
shell: bash
- name: Build wheels
uses: pypa/cibuildwheel@v2.23.0
uses: pypa/cibuildwheel@v3.2.1
env:
CIBW_ENABLE: >
pypy
CIBW_BUILD: >
${{ matrix.cibw-build-prefix }}
CIBW_SKIP: >
*musllinux*
*musllinux* cp3??t-*
CIBW_ENVIRONMENT_LINUX: >
HOST_HOME_DIR="/host/${{ env.OUTER_HOME }}"
HOST_PROJ_DIR="/host/${{ env.MAIN_DIR }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7"]
python-version: ["3.8"]
os: [ubuntu-22.04, windows-2022, macos-13]
include:
# set OS-specific cache paths
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"https://github.com/smheidrich/py-json-stream-rs-tokenizer"
)
},
python_requires=">=3.7,<4",
python_requires=">=3.8,<4",
install_requires=[],
extras_require={
"benchmark": [
Expand All @@ -49,13 +49,13 @@
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
],
)
Loading