diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d09e21a..6552282 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -136,6 +136,7 @@ jobs: if: github.triggering_actor == 'mgkwill' || github.triggering_actor == 'PhilippPlank' || github.triggering_actor == 'tim-shea' permissions: contents: write + id-token: write needs: [build-artifacts, test-artifact-install, test-artifact-use] steps: @@ -206,4 +207,4 @@ jobs: run: | mkdir dist cp lava* dist/. - poetry publish --dry-run \ No newline at end of file + poetry publish \ No newline at end of file diff --git a/poetry.lock b/poetry.lock index aa94499..4ade91a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1569,21 +1569,17 @@ name = "lava-nc" version = "0.8.0" description = "A Software Framework for Neuromorphic Computing" optional = false -python-versions = ">=3.8, <3.11" -files = [] -develop = true +python-versions = ">=3.8,<3.11" +files = [ + {file = "lava_nc-0.8.0-py3-none-any.whl", hash = "sha256:abb286b056e0bb773497a131198e24dd5462256bb41da9fcb32919526e582b6c"}, + {file = "lava_nc-0.8.0.tar.gz", hash = "sha256:f5631129b6a7b3c09b40ad44b4d8eb83823c38e7573c30c64974f79723b26d02"}, +] [package.dependencies] -asteval = "^0.9.31" +asteval = ">=0.9.31,<0.10.0" networkx = "<=2.8.7" -numpy = "^1.24.4" -scipy = "^1.10.1" - -[package.source] -type = "git" -url = "https://github.com/lava-nc/lava.git" -reference = "main" -resolved_reference = "2066e2f2254c7250b08c9d7a19f171ea94d5d82e" +numpy = ">=1.24.4,<2.0.0" +scipy = ">=1.10.1,<2.0.0" [[package]] name = "linecache2" @@ -3409,4 +3405,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.11" -content-hash = "920feecc8c5bd52f47897e32c5676c8901911cbad2b0e38f6862bf105782aaac" +content-hash = "bff9f53cb28865077fe9f5d47d17e12a83e9bf3abe08c60193e40aecad703963" diff --git a/pyproject.toml b/pyproject.toml index 0a4518d..f5b1fc3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ packages = [ {include = "tests"} ] include = ["tutorials"] -version = "0.1.4.dev0" +version = "0.1.4" description = "A library that provides processes and other software infrastructure to build architectures composed of Dynamic Neural Fields (DNF)." authors = ["Intel's Neuromorphic Computing Lab and the open source community "] homepage = "https://lava-nc.org/" @@ -42,7 +42,7 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.8,<3.11" -lava-nc = { git = "https://github.com/lava-nc/lava.git", branch = "main", develop = true } +lava-nc = "0.8.0" numpy = "^1.24.4" scipy = "^1.10.1"