diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a841d8b..77ad262 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 4cff18e..e467e6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/build-wheels.sh b/build-wheels.sh index 6fa7f8a..33fbce0 100755 --- a/build-wheels.sh +++ b/build-wheels.sh @@ -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 diff --git a/pyproject.toml b/pyproject.toml index aa3bfc4..d3c6e9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,4 +3,4 @@ requires = ["setuptools", "wheel", "setuptools-rust>=1.2.0"] [tool.black] line-length = 80 -target-version = ['py38'] +target-version = ['py39']