From 7d49963f295d9790b8ce4c65e9cbdaf336d3ceb6 Mon Sep 17 00:00:00 2001 From: Andrew Davison Date: Wed, 17 Apr 2024 17:28:19 +0200 Subject: [PATCH] Release 0.12.3 --- doc/conf.py | 2 +- doc/release_notes.txt | 1 + doc/releases/0.12.3.txt | 25 +++++++++++++++++++++++++ pyNN/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 doc/releases/0.12.3.txt diff --git a/doc/conf.py b/doc/conf.py index 7f7fa936..4565a3c5 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -78,7 +78,7 @@ class MockNESTModule(mock.Mock): # The short X.Y version. version = '0.12' # The full version, including alpha/beta/rc tags. -release = '0.12.2' +release = '0.12.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/release_notes.txt b/doc/release_notes.txt index 0e728dcc..67094d42 100644 --- a/doc/release_notes.txt +++ b/doc/release_notes.txt @@ -6,6 +6,7 @@ Release notes .. toctree:: :maxdepth: 1 + releases/0.12.3.txt releases/0.12.2.txt releases/0.12.1.txt releases/0.12.0.txt diff --git a/doc/releases/0.12.3.txt b/doc/releases/0.12.3.txt new file mode 100644 index 00000000..1df3512e --- /dev/null +++ b/doc/releases/0.12.3.txt @@ -0,0 +1,25 @@ +========================= +PyNN 0.12.3 release notes +========================= + +April 17th 2024 + +Welcome to PyNN 0.12.3! + + +NEST 3.7 support +---------------- + +PyNN now supports the latest version of NEST_. +NEST 3.4-3.6 should also work for most neuron models, but since the extension module interface +has changed in NEST 3.7, those models that require NEST extensions will not work with older versions. +For older versions of NEST, you will need an older version of PyNN to match. + + +Beta: API extensions for multicompartment neurons +------------------------------------------------- + +The beta API for multicompartment neurons has been updated to work with Arbor_ 0.9.0. + +.. _NEST: https://www.nest-simulator.org +.. _Arbor: https://arbor-sim.org \ No newline at end of file diff --git a/pyNN/__init__.py b/pyNN/__init__.py index 4345b57e..36222fc5 100644 --- a/pyNN/__init__.py +++ b/pyNN/__init__.py @@ -69,7 +69,7 @@ :license: CeCILL, see LICENSE for details. """ -__version__ = '0.12.2' +__version__ = '0.12.3' __all__ = ["common", "random", "nest", "neuron", "brian2", "recording", "errors", "space", "descriptions", "standardmodels", "parameters", "core", "morphology", diff --git a/pyproject.toml b/pyproject.toml index 8972c312..d36c1a6a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "PyNN" -version = "0.12.2" +version = "0.12.3" description = "A Python package for simulator-independent specification of neuronal network models" readme = "README.rst" requires-python = ">=3.8"