Skip to content

Commit 0925853

Browse files
committed
Release 0.12.1
1 parent 533c7c9 commit 0925853

File tree

7 files changed

+18
-8
lines changed

7 files changed

+18
-8
lines changed

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ class MockNESTModule(mock.Mock):
7676
# built documents.
7777
#
7878
# The short X.Y version.
79-
version = '0.12.0'
79+
version = '0.12'
8080
# The full version, including alpha/beta/rc tags.
81-
release = '0.12.0'
81+
release = '0.12.1'
8282

8383
# The language for content autogenerated by Sphinx. Refer to documentation
8484
# for a list of supported languages.

doc/installation.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ The easiest way to get PyNN is to use pip_::
2828
$ pip install PyNN
2929

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

33-
$ tar xzf PyNN-0.12.0.tar.gz
34-
$ pip install ./PyNN-0.12.0
33+
.. parsed-literal::
34+
35+
$ tar xzf PyNN-|release|.tar.gz
36+
$ pip install ./PyNN-|release|
3537

3638
This will install it to your Python :file:`site-packages` directory, and may
3739
require root privileges. We strongly recommend, however, that you use a

doc/introduction.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Even if you don't wish to run simulations on multiple simulators, you may benefi
1212

1313
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.
1414

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

1717
Licence
1818
-------

doc/release_notes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release notes
66
.. toctree::
77
:maxdepth: 1
88

9+
releases/0.12.1.txt
910
releases/0.12.0.txt
1011
releases/0.11.0.txt
1112
releases/0.10.1.txt

doc/releases/0.12.1.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
=========================
2+
PyNN 0.12.1 release notes
3+
=========================
4+
5+
September 29th 2023
6+
7+
This is a bug-fix release, due to a missing item in the list of dependencies for PyNN 0.12.0.

pyNN/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
:license: CeCILL, see LICENSE for details.
7070
"""
7171

72-
__version__ = '0.12.0'
72+
__version__ = '0.12.1'
7373
__all__ = ["common", "random", "nest", "neuron", "brian2",
7474
"recording", "errors", "space", "descriptions",
7575
"standardmodels", "parameters", "core", "morphology",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "PyNN"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
description = "A Python package for simulator-independent specification of neuronal network models"
55
readme = "README.rst"
66
requires-python = ">=3.8"

0 commit comments

Comments
 (0)