Skip to content

Commit 5b77d9e

Browse files
author
Andrew Davison
committed
Update copyright statement, version number
1 parent c1f2af3 commit 5b77d9e

103 files changed

Lines changed: 105 additions & 105 deletions

File tree

Some content is hidden

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

README.rst

Lines changed: 1 addition & 1 deletion

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class MockNESTModule(mock.Mock):
8080
# The short X.Y version.
8181
version = '0.9'
8282
# The full version, including alpha/beta/rc tags.
83-
release = '0.9.4'
83+
release = '0.9.5'
8484

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

doc/installation.txt

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

34-
$ tar xzf PyNN-0.9.4.tar.gz
35-
$ cd PyNN-0.9.4
34+
$ tar xzf PyNN-0.9.5.tar.gz
35+
$ cd PyNN-0.9.5
3636
$ python setup.py install
3737

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

pyNN/__init__.py

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

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

pyNN/brian/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Brian implementation of the PyNN API.
33
4-
:copyright: Copyright 2006-2016 by the PyNN team, see AUTHORS.
4+
:copyright: Copyright 2006-2019 by the PyNN team, see AUTHORS.
55
:license: CeCILL, see LICENSE for details.
66
"""
77

pyNN/brian/cells.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Definition of cell classes for the brian module.
33
4-
:copyright: Copyright 2006-2016 by the PyNN team, see AUTHORS.
4+
:copyright: Copyright 2006-2019 by the PyNN team, see AUTHORS.
55
:license: CeCILL, see LICENSE for details.
66
77
"""

pyNN/brian/recording.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
3-
:copyright: Copyright 2006-2016 by the PyNN team, see AUTHORS.
3+
:copyright: Copyright 2006-2019 by the PyNN team, see AUTHORS.
44
:license: CeCILL, see LICENSE for details.
55
"""
66

pyNN/brian/simulator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
All other functions and classes are private, and should not be used by other
1616
modules.
1717
18-
:copyright: Copyright 2006-2016 by the PyNN team, see AUTHORS.
18+
:copyright: Copyright 2006-2019 by the PyNN team, see AUTHORS.
1919
:license: CeCILL, see LICENSE for details.
2020
2121
"""

pyNN/brian/standardmodels/cells.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
Standard cells for the Brian module.
44
5-
:copyright: Copyright 2006-2016 by the PyNN team, see AUTHORS.
5+
:copyright: Copyright 2006-2019 by the PyNN team, see AUTHORS.
66
:license: CeCILL, see LICENSE for details.
77
"""
88

pyNN/brian/standardmodels/electrodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
ACSource -- a sine modulated current.
88
NoisyCurrentSource -- a Gaussian whitish noise current.
99
10-
:copyright: Copyright 2006-2016 by the PyNN team, see AUTHORS.
10+
:copyright: Copyright 2006-2019 by the PyNN team, see AUTHORS.
1111
:license: CeCILL, see LICENSE for details.
1212
1313
"""

0 commit comments

Comments
 (0)