Skip to content

Commit

Permalink
Release 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Sep 29, 2023
1 parent 533c7c9 commit 0925853
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Expand Up @@ -76,9 +76,9 @@ class MockNESTModule(mock.Mock):
# built documents.
#
# The short X.Y version.
version = '0.12.0'
version = '0.12'
# The full version, including alpha/beta/rc tags.
release = '0.12.0'
release = '0.12.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 5 additions & 3 deletions doc/installation.txt
Expand Up @@ -28,10 +28,12 @@ The easiest way to get PyNN is to use pip_::
$ pip install PyNN

If you would prefer to install manually, :doc:`download the latest
source distribution <download>`, then run the setup script, e.g.::
source distribution <download>`, then run the setup script, e.g.:

$ tar xzf PyNN-0.12.0.tar.gz
$ pip install ./PyNN-0.12.0
.. parsed-literal::

$ tar xzf PyNN-|release|.tar.gz
$ pip install ./PyNN-|release|

This will install it to your Python :file:`site-packages` directory, and may
require root privileges. We strongly recommend, however, that you use a
Expand Down
2 changes: 1 addition & 1 deletion doc/introduction.txt
Expand Up @@ -12,7 +12,7 @@ Even if you don't wish to run simulations on multiple simulators, you may benefi

It is straightforward to port an existing model from a Python-supporting simulator to PyNN, since this can be done incrementally, replacing one piece of simulator-specific code at a time with the PyNN equivalent, and testing that the model behaviour is unchanged at each step.

:doc:`Download<download>` the current stable release of the library (0.12.0) or get the development version from the `Git repository`_ .
:doc:`Download<download>` the current stable release of the library (|release|) or get the development version from the `Git repository`_ .

Licence
-------
Expand Down
1 change: 1 addition & 0 deletions doc/release_notes.txt
Expand Up @@ -6,6 +6,7 @@ Release notes
.. toctree::
:maxdepth: 1

releases/0.12.1.txt
releases/0.12.0.txt
releases/0.11.0.txt
releases/0.10.1.txt
Expand Down
7 changes: 7 additions & 0 deletions doc/releases/0.12.1.txt
@@ -0,0 +1,7 @@
=========================
PyNN 0.12.1 release notes
=========================

September 29th 2023

This is a bug-fix release, due to a missing item in the list of dependencies for PyNN 0.12.0.
2 changes: 1 addition & 1 deletion pyNN/__init__.py
Expand Up @@ -69,7 +69,7 @@
:license: CeCILL, see LICENSE for details.
"""

__version__ = '0.12.0'
__version__ = '0.12.1'
__all__ = ["common", "random", "nest", "neuron", "brian2",
"recording", "errors", "space", "descriptions",
"standardmodels", "parameters", "core", "morphology",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "PyNN"
version = "0.12.0"
version = "0.12.1"
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 0925853

Please sign in to comment.