diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6293afa..7b97959 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,7 +39,7 @@ jobs: CIBW_BEFORE_BUILD: "pip install setuptools-rust" CIBW_BUILD_VERBOSITY: 2 CIBW_ENVIRONMENT: CARGO_NET_GIT_FETCH_WITH_CLI=true - CIBW_TEST_COMMAND: python -m unittest pyskani.tests + # CIBW_TEST_COMMAND: python -m unittest pyskani.tests with: output-dir: dist - uses: actions/upload-artifact@v3 @@ -78,7 +78,7 @@ jobs: CIBW_BEFORE_BUILD: "pip install setuptools-rust" CIBW_BUILD_VERBOSITY: 2 CIBW_ENVIRONMENT: CARGO_NET_GIT_FETCH_WITH_CLI=true - CIBW_TEST_COMMAND: python -m unittest pyskani.tests + # CIBW_TEST_COMMAND: python -m unittest pyskani.tests with: output-dir: dist - uses: actions/upload-artifact@v3 @@ -88,7 +88,7 @@ jobs: wheel-macos-x86_64: name: Build MacOS wheels (x86-64) - runs-on: macOS-11 + runs-on: macOS-12 strategy: matrix: python-tag: @@ -117,7 +117,7 @@ jobs: CIBW_BEFORE_BUILD: "pip install setuptools-rust" CIBW_BUILD_VERBOSITY: 2 CIBW_ENVIRONMENT: CARGO_NET_GIT_FETCH_WITH_CLI=true - CIBW_TEST_COMMAND: python -m unittest pyskani.tests + # CIBW_TEST_COMMAND: python -m unittest pyskani.tests CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=11.0 with: output-dir: dist @@ -153,7 +153,7 @@ jobs: CIBW_BEFORE_BUILD: "pip install setuptools-rust" CIBW_BUILD_VERBOSITY: 2 CIBW_ENVIRONMENT: CARGO_NET_GIT_FETCH_WITH_CLI=true - CIBW_TEST_COMMAND: python -m unittest pyskani.tests + # CIBW_TEST_COMMAND: python -m unittest pyskani.tests CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=11.0 with: output-dir: dist @@ -191,7 +191,7 @@ jobs: CIBW_BUILD: ${{ matrix.python-tag }} CIBW_BEFORE_BUILD: "pip install setuptools-rust" CIBW_BUILD_VERBOSITY: 2 - CIBW_TEST_COMMAND: python -m unittest pyskani.tests + # CIBW_TEST_COMMAND: python -m unittest pyskani.tests with: output-dir: dist - uses: actions/upload-artifact@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 56da271..8207a4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [Unreleased]: https://github.com/althonos/pyskani/compare/v0.1.1...HEAD +## [v0.1.2] - 2023-04-11 +[v0.1.2]: https://github.com/althonos/pyskani/compare/v0.1.1...v0.1.2 + +### Changed +- Bumped `pyo3` to `v0.21.0`. + +### Added +- Wheels for CPython 3.12 and PyPy 3.10. + + ## [v0.1.1] - 2023-04-11 [v0.1.1]: https://github.com/althonos/pyskani/compare/v0.1.0...v0.1.1 diff --git a/Cargo.lock b/Cargo.lock index cea64da..b4721e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1095,7 +1095,7 @@ dependencies = [ [[package]] name = "pyskani" -version = "0.1.1" +version = "0.1.2" dependencies = [ "bincode", "built", diff --git a/Cargo.toml b/Cargo.toml index 03b7c3e..bfa94f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyskani" -version = "0.1.1" +version = "0.1.2" authors = ["Martin Larralde "] license = "MIT" publish = false