Skip to content

Commit cf9ae86

Browse files
author
Andrew Davison
committed
Release 0.9.3
1 parent 52626d8 commit cf9ae86

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ include test/system/scenarios/*.py
1010
include test/unittests/*.py
1111
include examples/*.py
1212
include doc/*.txt
13+
include doc/*/*.txt
1314
include LICENSE
1415
include AUTHORS
1516
include README.rst

pyNN/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""
22
PyNN (pronounced 'pine') is a Python package for simulator-independent
3-
specification of neuronal network models.
3+
specification of neuronal network models.
44
55
In other words, you can write the code for a model once, using the PyNN API, and
6-
then run it without modification on any simulator that PyNN supports.
6+
then run it without modification on any simulator that PyNN supports.
77
88
To use PyNN, import the particular simulator module you wish to use, e.g.
99
import pyNN.neuron as sim
@@ -23,15 +23,15 @@
2323
rank()
2424
num_processes()
2525
list_standard_models()
26-
26+
2727
Functions for creating, connecting, modifying and recording from neurons
2828
(low-level interface):
2929
create()
3030
connect()
3131
set()
3232
record()
3333
initialize()
34-
34+
3535
Classes for creating, connecting, modifying and recording from neurons
3636
(high-level interface):
3737
Population
@@ -69,7 +69,7 @@
6969
:license: CeCILL, see LICENSE for details.
7070
"""
7171

72-
__version__ = '0.9.2'
72+
__version__ = '0.9.3'
7373
__all__ = ["common", "random", "nest", "neuron", "brian",
7474
"recording", "errors", "space", "descriptions",
7575
"standardmodels", "parameters", "core"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def find(self, command):
8686

8787
setup(
8888
name="PyNN",
89-
version="0.9.2",
89+
version="0.9.3",
9090
packages=['pyNN', 'pyNN.nest', 'pyNN.neuron',
9191
'pyNN.brian', 'pyNN.common', 'pyNN.mock', 'pyNN.neuroml',
9292
'pyNN.recording', 'pyNN.standardmodels', 'pyNN.descriptions',

0 commit comments

Comments
 (0)