Skip to content

Commit

Permalink
Update copyright statements
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Dec 6, 2021
1 parent b9fcf01 commit d070c01
Show file tree
Hide file tree
Showing 77 changed files with 82 additions and 95 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
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-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.

.. image:: https://travis-ci.org/NeuralEnsemble/PyNN.png?branch=master
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,16 @@ class MockNESTModule(mock.Mock):
# General information about the project.
project = u'PyNN'
authors = u'the PyNN community'
copyright = u'2006-2020, ' + authors
copyright = u'2006-2021, ' + 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
# built documents.
#
# The short X.Y version.
version = '0.9'
version = '0.10'
# The full version, including alpha/beta/rc tags.
release = '0.10.0.dev'
release = '0.10.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions doc/installation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ The easiest way to get PyNN is to use pip_::
If you would prefer to install manually, :doc:`download the latest
source distribution <download>`, then run the setup script, e.g.::

$ tar xzf PyNN-0.10.0.dev.tar.gz
$ cd PyNN-0.10.0.dev
$ tar xzf PyNN-0.10.0.tar.gz
$ cd PyNN-0.10.0
$ python setup.py install

This will install it to your Python :file:`site-packages` directory, and may
Expand Down
6 changes: 3 additions & 3 deletions pyNN/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@
random
space
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

__version__ = '0.10.0.dev'
__all__ = ["common", "random", "nest", "neuron", "brian", "brian2",
__version__ = '0.10.0'
__all__ = ["common", "random", "nest", "neuron", "brian2",
"recording", "errors", "space", "descriptions",
"standardmodels", "parameters", "core", "serialization"]
2 changes: 1 addition & 1 deletion pyNN/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
DEFAULT_TIMESTEP
DEFAULT_MIN_DELAY
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/common/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
is intended to be reused)
* function factories for generating backend-specific API functions.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/common/populations.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
These base classes should be sub-classed by the backend-specific classes.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Alternative, procedural API for creating, connecting and recording from individual neurons
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

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

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

Expand Down
2 changes: 1 addition & 1 deletion pyNN/core.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Assorted utility classes and functions.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

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

Expand Down
2 changes: 1 addition & 1 deletion pyNN/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
NotLocalError
RecordingError
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/hardware/__init__.py
Original file line number Diff line number Diff line change
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-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/hardware/auxiliary.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
auxiliary functions to look for the hardware backend.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/mock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This simulator implements the PyNN API, but generates random data rather than
really running simulations.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/mock/standardmodels.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Standard cells for the mock module.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/models.py
Original file line number Diff line number Diff line change
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-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

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

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

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

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

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

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

Expand Down
15 changes: 1 addition & 14 deletions pyNN/nest/extensions/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# :copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
# :copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
# :license: CeCILL, see LICENSE for details.

cmake_minimum_required( VERSION 2.8.12 )
Expand Down Expand Up @@ -247,19 +247,6 @@ install( TARGETS ${MODULE_NAME}_lib DESTINATION ${CMAKE_INSTALL_LIBDIR} )
install( FILES ${MODULE_HEADER} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} )
install( DIRECTORY sli DESTINATION ${CMAKE_INSTALL_DATADIR} )

# Install help.
set( HELPDIRS "${PROJECT_SOURCE_DIR}:${PROJECT_SOURCE_DIR}/sli" )
install( CODE
"execute_process(COMMAND ${CMAKE_COMMAND}
-DDOC_DIR='${CMAKE_INSTALL_FULL_DOCDIR}'
-DDATA_DIR='${CMAKE_INSTALL_FULL_DATADIR}'
-DHELPDIRS='${HELPDIRS}'
-DINSTALL_DIR='${CMAKE_INSTALL_PREFIX}'
-P ${CMAKE_INSTALL_FULL_DOCDIR}/generate_help.cmake
WORKING_DIRECTORY \"${PROJECT_BINARY_DIR}\"
)"
)

message( "" )
message( "-------------------------------------------------------" )
message( "${MODULE_NAME} Configuration Summary" )
Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/extensions/pynn_extensions.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
*/
Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/extensions/sli/pynn_extensions-init.sli
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*

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

*/
Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/nineml.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Constants:
NEST_DIR - subdirectory to which NEST mechanisms will be written (TODO: not implemented)
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/populations.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
NEST v2 implementation of the PyNN API.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/projections.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
NEST v3 implementation of the PyNN API.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/random.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
NEST v3 implementation of the PyNN API.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/recording.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
NEST v3 implementation of the PyNN API.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
All other functions and classes are private, and should not be used by other
modules.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/standardmodels/cells.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Standard cells for nest
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/standardmodels/electrodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
ACSource -- a sine modulated current.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/standardmodels/synapses.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Synapse Dynamics classes for nest
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/nest/synapses.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Definition of NativeSynapseType class for NEST
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""

Expand Down
2 changes: 1 addition & 1 deletion pyNN/neuron/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
nrnpython implementation of the PyNN API.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyNN/neuron/cells.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Definition of cell classes for the neuron module.
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
Expand Down
Loading

0 comments on commit d070c01

Please sign in to comment.