Skip to content

Commit

Permalink
Release 0.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Feb 21, 2024
1 parent c680a2b commit fe3e6fb
Show file tree
Hide file tree
Showing 117 changed files with 128 additions and 117 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -31,6 +31,7 @@ The following people have contributed to PyNN. Their affiliations at the time of
* Onur Ates [20]
* Rémy Cagnol [21]
* Lungsi Sharma [20]
* Alexandre Detiste


1. Unité de Neuroscience, Information et Complexité, CNRS, Gif sur Yvette, France
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -30,7 +30,7 @@ your simulator, and are not restricted to the standard models.
- Bug reports: https://github.com/NeuralEnsemble/PyNN/issues


:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.

.. image:: https://github.com/NeuralEnsemble/PyNN/actions/workflows/full-test.yml/badge.svg
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Expand Up @@ -69,7 +69,7 @@ class MockNESTModule(mock.Mock):
# General information about the project.
project = u'PyNN'
authors = u'the PyNN community'
copyright = u'2006-2023, ' + authors
copyright = u'2006-2024, ' + authors

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -78,7 +78,7 @@ class MockNESTModule(mock.Mock):
# The short X.Y version.
version = '0.12'
# The full version, including alpha/beta/rc tags.
release = '0.12.1'
release = '0.12.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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.2.txt
releases/0.12.1.txt
releases/0.12.0.txt
releases/0.11.0.txt
Expand Down
7 changes: 7 additions & 0 deletions doc/releases/0.12.2.txt
@@ -0,0 +1,7 @@
=========================
PyNN 0.12.2 release notes
=========================

February 21st 2024

This is a bug-fix release, primarily fixing problems arising from changes in dependencies.
4 changes: 2 additions & 2 deletions pyNN/__init__.py
Expand Up @@ -65,11 +65,11 @@
random
space
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

__version__ = '0.12.1'
__version__ = '0.12.2'
__all__ = ["common", "random", "nest", "neuron", "brian2",
"recording", "errors", "space", "descriptions",
"standardmodels", "parameters", "core", "morphology",
Expand Down
2 changes: 1 addition & 1 deletion pyNN/arbor/__init__.py
Expand Up @@ -4,7 +4,7 @@
This simulator implements the PyNN API, but generates random data rather than
really running simulations.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/arbor/standardmodels.py
@@ -1,7 +1,7 @@
"""
Standard cells for the Arbor module.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/__init__.py
@@ -1,7 +1,7 @@
"""
Brian2 implementation of the PyNN API.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/cells.py
@@ -1,7 +1,7 @@
"""
Definition of cell classes for the brian2 module.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/control.py
@@ -1,7 +1,7 @@
"""
Brian 2 implementation of simulation control functions
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/populations.py
@@ -1,7 +1,7 @@
"""
Brian 2 implementation of Population, PopulationView and Assembly.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/procedural_api.py
@@ -1,7 +1,7 @@
"""
Brian 2 implementation of the "procedural" API
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/projections.py
@@ -1,7 +1,7 @@
"""
Brian 2 implementation of Projection
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/recording.py
@@ -1,7 +1,7 @@
"""
Brian 2 implementation of recording machinery.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/simulator.py
Expand Up @@ -14,7 +14,7 @@
All other functions and classes are private, and should not be used by other
modules.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/standardmodels/cells.py
Expand Up @@ -2,7 +2,7 @@
"""
Standard cells for the Brian2 module.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/standardmodels/electrodes.py
Expand Up @@ -7,7 +7,7 @@
ACSource -- a sine modulated current.
NoisyCurrentSource -- a Gaussian whitish noise current.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/brian2/standardmodels/synapses.py
Expand Up @@ -2,7 +2,7 @@
"""
Standard cells for the Brian2 module.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/common/__init__.py
Expand Up @@ -39,7 +39,7 @@
DEFAULT_TIMESTEP
DEFAULT_MIN_DELAY
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/common/control.py
Expand Up @@ -8,7 +8,7 @@
is intended to be reused)
* function factories for generating backend-specific API functions.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/common/populations.py
Expand Up @@ -4,7 +4,7 @@
These base classes should be sub-classed by the backend-specific classes.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/common/procedural_api.py
Expand Up @@ -2,7 +2,7 @@
"""
Alternative, procedural API for creating, connecting and recording from individual neurons
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/common/projections.py
Expand Up @@ -3,7 +3,7 @@
Common implementation of the Projection class, to be sub-classed by
backend-specific Projection classes.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/connectors.py
Expand Up @@ -4,7 +4,7 @@
Simulator modules may use these directly, or may implement their own versions
for improved performance.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/core.py
@@ -1,7 +1,7 @@
"""
Assorted utility classes and functions.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/descriptions/__init__.py
Expand Up @@ -18,7 +18,7 @@
descriptions.DEFAULT_TEMPLATE_ENGINE = 'jinja2'
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/errors.py
Expand Up @@ -13,7 +13,7 @@
NotLocalError
RecordingError
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/hardware/__init__.py
Expand Up @@ -5,7 +5,7 @@
This solution is a clean way to make the submodules (brainscales, etc...)
be indeed submodules of hardware, even if they don't stand on the same directory
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/hardware/auxiliary.py
Expand Up @@ -2,7 +2,7 @@
"""
auxiliary functions to look for the hardware backend.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/mock/__init__.py
Expand Up @@ -4,7 +4,7 @@
This simulator implements the PyNN API, but generates random data rather than
really running simulations.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/mock/standardmodels.py
@@ -1,7 +1,7 @@
"""
Standard cells for the mock module.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/models.py
Expand Up @@ -2,7 +2,7 @@
Base classes for cell and synapse models, whether "standard" (cross-simulator)
or "native" (restricted to an individual simulator).
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/multisim.py
Expand Up @@ -2,7 +2,7 @@
A small framework to make it easier to run the same model on multiple
simulators.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/__init__.py
Expand Up @@ -2,7 +2,7 @@
"""
NEST v3 implementation of the PyNN API.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/cells.py
Expand Up @@ -2,7 +2,7 @@
"""
Definition of NativeCellType class for NEST.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/connectors.py
Expand Up @@ -2,7 +2,7 @@
"""
Connection method classes for NEST.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/control.py
@@ -1,7 +1,7 @@
"""
NEST implementation of functions for simulation set-up and control
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/conversion.py
Expand Up @@ -2,7 +2,7 @@
"""
Conversion functions to NEST-compatible data types.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/electrodes.py
Expand Up @@ -2,7 +2,7 @@
"""
Definition of NativeElectrodeType class for NEST.
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/extensions/CMakeLists.txt
@@ -1,4 +1,4 @@
# :copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
# :copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
# :license: CeCILL, see LICENSE for details.

cmake_minimum_required( VERSION 2.8.12 )
Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/extensions/pynn_extensions.cpp
@@ -1,6 +1,6 @@
/*
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
*/
Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/extensions/pynn_extensions.h
@@ -1,6 +1,6 @@
/*
:copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
*/
Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/extensions/simple_stochastic_synapse.h
@@ -1,5 +1,5 @@
/*
* :copyright: Copyright 2006-2023 by the PyNN team, see AUTHORS.
* :copyright: Copyright 2006-2024 by the PyNN team, see AUTHORS.
* :license: CeCILL, see LICENSE for details.
*
*/
Expand Down

0 comments on commit fe3e6fb

Please sign in to comment.