diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 09610d1..3ec84e4 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -78,6 +78,6 @@ jobs: name: dist path: dist - run: mv wheelhouse/* dist/ - - uses: pypa/gh-action-pypi-publish@v1.8.10 + - uses: pypa/gh-action-pypi-publish@v1.8.14 with: password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/python/Cargo.toml b/python/Cargo.toml index cd1ef29..1d8d8fd 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python" -version = "0.13.0" +version = "0.13.1" edition = "2021" [lib] @@ -8,14 +8,14 @@ name = "neuromorphic_drivers" crate-type = ["cdylib"] [dependencies] -neuromorphic-drivers = "0.13.0" +neuromorphic-drivers = "0.13.1" numpy = "0.21.0" paste = "1.0" pyo3 = {version = "0.21", features = ["extension-module"]} [build-dependencies] cc = "1.0" -neuromorphic-drivers = "0.13.0" +neuromorphic-drivers = "0.13.1" paste = "1.0" reflect = {path = "../reflect"} serde = {version = "1.0", features = ["derive"]} diff --git a/python/pyproject.toml b/python/pyproject.toml index d6cc8f1..1dfec03 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -7,7 +7,7 @@ authors = [ {name = "International Centre for Neuromorphic Systems"}, {name = "Alexandre Marcireau"}, ] -version = "0.13.0" +version = "0.13.1" requires-python = ">=3.8" dependencies = ["numpy>=1.24"]