diff --git a/doc/conf.py b/doc/conf.py index 87e7dd69..1400edc0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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. diff --git a/doc/releases/0.11.0.txt b/doc/releases/0.11.0.txt index 66ad96ec..5f0f0d3b 100644 --- a/doc/releases/0.11.0.txt +++ b/doc/releases/0.11.0.txt @@ -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 ---------------------- diff --git a/pyNN/__init__.py b/pyNN/__init__.py index bc54ab2c..2ac28605 100644 --- a/pyNN/__init__.py +++ b/pyNN/__init__.py @@ -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", diff --git a/pyproject.toml b/pyproject.toml index 70db9de1..2ff10cac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" @@ -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/"