From 08d1dfddede9a8b72517c6d9fad0e77c695465fd Mon Sep 17 00:00:00 2001 From: Alexandre Marcireau Date: Sun, 24 Sep 2023 19:54:44 -1000 Subject: [PATCH] Bump Python version --- python/Cargo.toml | 6 +++--- python/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/python/Cargo.toml b/python/Cargo.toml index 96dc59e..6338a76 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python" -version = "0.3.0" +version = "0.7.0" edition = "2021" [lib] @@ -8,14 +8,14 @@ name = "neuromorphic_drivers" crate-type = ["cdylib"] [dependencies] -neuromorphic-drivers = {path = "../drivers"} +neuromorphic-drivers = "0.7.0" numpy = "0.19" paste = "1.0" pyo3 = {version = "0.19", features = ["extension-module"]} [build-dependencies] cc = "1.0" -neuromorphic-drivers = {path = "../drivers"} +neuromorphic-drivers = "0.7.0" paste = "1.0" reflect = {path = "../reflect"} serde = {version = "1.0", features = ["derive"]} diff --git a/python/pyproject.toml b/python/pyproject.toml index 0dd4e69..ef0d604 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.3.0" +version = "0.7.0" requires-python = ">=3.8" dependencies = ["numpy>=1.26"]