Skip to content

Commit

Permalink
Release 0.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Apr 17, 2024
1 parent 1bdaa5a commit 7d49963
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions doc/release_notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
25 changes: 25 additions & 0 deletions doc/releases/0.12.3.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion pyNN/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 7d49963

Please sign in to comment.