Skip to content

Commit 7f0f916

Browse files
committed
add support for python 3.13; drop support for 3.8
1 parent 2b6ca63 commit 7f0f916

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest]
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717
runs-on: "${{ matrix.os }}"
1818
steps:
1919
# Check out the code
@@ -212,11 +212,11 @@ jobs:
212212
- { os: ubuntu-latest, name: musllinux }
213213
- { os: macos-latest, name: macosx }
214214
py:
215-
- cp38
216215
- cp39
217216
- cp310
218217
- cp311
219218
- cp312
219+
- cp313
220220

221221
steps:
222222
- uses: actions/checkout@v4

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "jsonlogic-rs"
1010
readme = "README.md"
1111
repository = "https://github.com/bestowinc/json-logic-rs"
12-
version = "0.4.0"
12+
version = "0.5.0"
1313

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

build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export PATH=/root/.cargo/bin:$PATH
1313

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

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

1919
"${PYBIN}/python" -m ensurepip

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ requires = ["setuptools", "wheel", "setuptools-rust>=1.2.0"]
33

44
[tool.black]
55
line-length = 80
6-
target-version = ['py38']
6+
target-version = ['py39']

0 commit comments

Comments
 (0)