Skip to content

Commit 10545f9

Browse files
committed
Release 0.11.0
1 parent 09f2934 commit 10545f9

4 files changed

Lines changed: 9 additions & 6 deletions

File tree

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class MockNESTModule(mock.Mock):
7878
# The short X.Y version.
7979
version = '0.11'
8080
# The full version, including alpha/beta/rc tags.
81-
release = '0.11.0.dev'
81+
release = '0.11.0'
8282

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

doc/releases/0.11.0.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@ Example::
3434
GABAB=sim.AlphaPSR(tau_syn=15.0, e_syn=-90.0))
3535

3636

37-
NEST 3.4, NEURON 8.2
38-
--------------------
37+
NEST 3.4 support
38+
----------------
3939

40-
PyNN now supports the latest versions of NEST_ and NEURON_.
40+
PyNN now supports the latest version of NEST_. NEST 3.3 should also work.
41+
For older versions of NEST, you will need an older version of PyNN to match.
4142

4243
Changes for developers
4344
----------------------

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.11.0.dev'
72+
__version__ = '0.11.0'
7373
__all__ = ["common", "random", "nest", "neuron", "brian2",
7474
"recording", "errors", "space", "descriptions",
7575
"standardmodels", "parameters", "core", "serialization",

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "PyNN"
3-
version = "0.11.0.dev.1"
3+
version = "0.11.0"
44
description = "A Python package for simulator-independent specification of neuronal network models"
55
readme = "README.rst"
66
requires-python = ">=3.8"
@@ -40,6 +40,8 @@ examples = ["matplotlib", "scipy"]
4040
plotting = ["matplotlib", "scipy"]
4141
MPI = ["mpi4py"]
4242
sonata = ["h5py"]
43+
neuron = ["neuron"]
44+
brian2 = ["brian2"]
4345

4446
[project.urls]
4547
homepage = "http://neuralensemble.org/PyNN/"

0 commit comments

Comments
 (0)