Skip to content

Commit

Permalink
add support for python 3.13; drop support for 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jstewmon committed Dec 13, 2024
1 parent 2b6ca63 commit 7f0f916
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: "${{ matrix.os }}"
steps:
# Check out the code
Expand Down Expand Up @@ -212,11 +212,11 @@ jobs:
- { os: ubuntu-latest, name: musllinux }
- { os: macos-latest, name: macosx }
py:
- cp38
- cp39
- cp310
- cp311
- cp312
- cp313

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "jsonlogic-rs"
readme = "README.md"
repository = "https://github.com/bestowinc/json-logic-rs"
version = "0.4.0"
version = "0.5.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export PATH=/root/.cargo/bin:$PATH

mkdir -p build && rm -rf build/*

for PYBIN in /opt/python/{cp38-cp38,cp39-cp39,cp310-cp310,cp311-cp311,cp312-cp312}/bin; do
for PYBIN in /opt/python/{cp39-cp39,cp310-cp310,cp311-cp311,cp312-cp312,cp-313-cp313}/bin; do
export PYTHON_SYS_EXECUTABLE="$PYBIN/python"

"${PYBIN}/python" -m ensurepip
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ requires = ["setuptools", "wheel", "setuptools-rust>=1.2.0"]

[tool.black]
line-length = 80
target-version = ['py38']
target-version = ['py39']

0 comments on commit 7f0f916

Please sign in to comment.