Skip to content

Commit d070c01

Browse files
committed
Update copyright statements
1 parent b9fcf01 commit d070c01

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+82
-95
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ your simulator, and are not restricted to the standard models.
3030
- Bug reports: https://github.com/NeuralEnsemble/PyNN/issues
3131

3232

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

3636
.. image:: https://travis-ci.org/NeuralEnsemble/PyNN.png?branch=master

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,16 @@ class MockNESTModule(mock.Mock):
6969
# General information about the project.
7070
project = u'PyNN'
7171
authors = u'the PyNN community'
72-
copyright = u'2006-2020, ' + authors
72+
copyright = u'2006-2021, ' + authors
7373

7474
# The version info for the project you're documenting, acts as replacement for
7575
# |version| and |release|, also used in various other places throughout the
7676
# built documents.
7777
#
7878
# The short X.Y version.
79-
version = '0.9'
79+
version = '0.10'
8080
# The full version, including alpha/beta/rc tags.
81-
release = '0.10.0.dev'
81+
release = '0.10.0'
8282

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

doc/installation.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ The easiest way to get PyNN is to use pip_::
3232
If you would prefer to install manually, :doc:`download the latest
3333
source distribution <download>`, then run the setup script, e.g.::
3434

35-
$ tar xzf PyNN-0.10.0.dev.tar.gz
36-
$ cd PyNN-0.10.0.dev
35+
$ tar xzf PyNN-0.10.0.tar.gz
36+
$ cd PyNN-0.10.0
3737
$ python setup.py install
3838

3939
This will install it to your Python :file:`site-packages` directory, and may

pyNN/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@
6565
random
6666
space
6767
68-
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
68+
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
6969
:license: CeCILL, see LICENSE for details.
7070
"""
7171

72-
__version__ = '0.10.0.dev'
73-
__all__ = ["common", "random", "nest", "neuron", "brian", "brian2",
72+
__version__ = '0.10.0'
73+
__all__ = ["common", "random", "nest", "neuron", "brian2",
7474
"recording", "errors", "space", "descriptions",
7575
"standardmodels", "parameters", "core", "serialization"]

pyNN/common/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
DEFAULT_TIMESTEP
4040
DEFAULT_MIN_DELAY
4141
42-
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
42+
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
4343
:license: CeCILL, see LICENSE for details.
4444
4545
"""

pyNN/common/control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
is intended to be reused)
99
* function factories for generating backend-specific API functions.
1010
11-
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
11+
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
1212
:license: CeCILL, see LICENSE for details.
1313
"""
1414

pyNN/common/populations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
These base classes should be sub-classed by the backend-specific classes.
66
7-
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
7+
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
88
:license: CeCILL, see LICENSE for details.
99
"""
1010

pyNN/common/procedural_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
Alternative, procedural API for creating, connecting and recording from individual neurons
44
5-
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
5+
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
66
:license: CeCILL, see LICENSE for details.
77
"""
88

pyNN/common/projections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Common implementation of the Projection class, to be sub-classed by
44
backend-specific Projection classes.
55
6-
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
6+
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
77
:license: CeCILL, see LICENSE for details.
88
"""
99

pyNN/connectors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Simulator modules may use these directly, or may implement their own versions
55
for improved performance.
66
7-
:copyright: Copyright 2006-2020 by the PyNN team, see AUTHORS.
7+
:copyright: Copyright 2006-2021 by the PyNN team, see AUTHORS.
88
:license: CeCILL, see LICENSE for details.
99
"""
1010

0 commit comments

Comments
 (0)