Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed May 23, 2023
1 parent 09f2934 commit 10545f9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 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.11'
# The full version, including alpha/beta/rc tags.
release = '0.11.0.dev'
release = '0.11.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 4 additions & 3 deletions doc/releases/0.11.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ Example::
GABAB=sim.AlphaPSR(tau_syn=15.0, e_syn=-90.0))


NEST 3.4, NEURON 8.2
--------------------
NEST 3.4 support
----------------

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

Changes for developers
----------------------
Expand Down
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.11.0.dev'
__version__ = '0.11.0'
__all__ = ["common", "random", "nest", "neuron", "brian2",
"recording", "errors", "space", "descriptions",
"standardmodels", "parameters", "core", "serialization",
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "PyNN"
version = "0.11.0.dev.1"
version = "0.11.0"
description = "A Python package for simulator-independent specification of neuronal network models"
readme = "README.rst"
requires-python = ">=3.8"
Expand Down Expand Up @@ -40,6 +40,8 @@ examples = ["matplotlib", "scipy"]
plotting = ["matplotlib", "scipy"]
MPI = ["mpi4py"]
sonata = ["h5py"]
neuron = ["neuron"]
brian2 = ["brian2"]

[project.urls]
homepage = "http://neuralensemble.org/PyNN/"
Expand Down

0 comments on commit 10545f9

Please sign in to comment.