Skip to content

Commit

Permalink
Release 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Oct 13, 2022
1 parent ba50a22 commit d76b4d0
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 12 deletions.
6 changes: 6 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
==============
Release 0.10.1
==============

see doc/releases/0.10.1.txt

==============
Release 0.10.0
==============
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class MockNESTModule(mock.Mock):
# The short X.Y version.
version = '0.10'
# The full version, including alpha/beta/rc tags.
release = '0.10.1.dev'
release = '0.10.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -293,4 +293,4 @@ class MockNESTModule(mock.Mock):

# -- inter-Sphinx mapping options ----------------------------------------------

intersphinx_mapping = {'python': ('http://docs.python.org/3.8', None)}
intersphinx_mapping = {'python': ('http://docs.python.org/3.9', None)}
2 changes: 1 addition & 1 deletion doc/connections.txt
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ Optionally, we can also specify:

* the name of the post-synaptic mechanism (e.g. ‘excitatory’, ‘NMDA’)
(if not specified, PyNN picks a default depending on the weight
parameter of the synapse type);
parameter of the synapse type);
* a label (autogenerated if not specified);
* a :class:`Space` object, which determines how distances should be
calculated for distance-dependent wiring schemes or parameter values.
Expand Down
3 changes: 2 additions & 1 deletion doc/download.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Downloads
Source distributions
--------------------

The `latest stable version of PyNN`_ (0.10.0) may be downloaded from the
The `latest stable version of PyNN`_ (0.10.1) may be downloaded from the
`Python Package Index`_. This is recommended for
anyone using PyNN for the first time.

Expand All @@ -14,6 +14,7 @@ the links below.

Older versions:

* `0.10.0 <https://pypi.python.org/pypi/PyNN/0.10.0>`_
* `0.9.6 <https://pypi.python.org/pypi/PyNN/0.9.6>`_
* `0.8.0 <https://pypi.python.org/pypi/PyNN/0.8.0>`_
* `0.7.5 <https://pypi.python.org/pypi/PyNN/0.7.5>`_
Expand Down
8 changes: 4 additions & 4 deletions doc/installation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ install and run PyNN on Windows, but this has not been tested.

Installing PyNN requires:

* Python (version 2.7, 3.6+)
* Python (version 3.7+)
* a recent version of the NumPy_ package
* the lazyarray_ package
* the Neo_ package (>= 0.8.0)
* the Neo_ package (>= 0.11.0)
* at least one of the supported simulators: e.g. NEURON, NEST, or Brian 2.

Optional dependencies are:
Expand All @@ -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.tar.gz
$ cd PyNN-0.10.0
$ tar xzf PyNN-0.10.1.tar.gz
$ cd PyNN-0.10.1
$ python setup.py install

This will install it to your Python :file:`site-packages` directory, and may
Expand Down
2 changes: 1 addition & 1 deletion doc/introduction.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Even if you don't wish to run simulations on multiple simulators, you may benefi

It is straightforward to port an existing model from a Python-supporting simulator to PyNN, since this can be done incrementally, replacing one piece of simulator-specific code at a time with the PyNN equivalent, and testing that the model behaviour is unchanged at each step.

:doc:`Download<download>` the current stable release of the library (0.10.0) or get the development version from the `Git repository`_ .
:doc:`Download<download>` the current stable release of the library (0.10.1) or get the development version from the `Git repository`_ .

Licence
-------
Expand Down
2 changes: 1 addition & 1 deletion pyNN/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
:license: CeCILL, see LICENSE for details.
"""

__version__ = '0.10.1.dev'
__version__ = '0.10.1'
__all__ = ["common", "random", "nest", "neuron", "brian2",
"recording", "errors", "space", "descriptions",
"standardmodels", "parameters", "core", "serialization"]
2 changes: 1 addition & 1 deletion pyNN/common/projections.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def __repr__(self):
return 'Projection("%s")' % self.label

def __getitem__(self, i):
"""Return the *i*th connection within the Projection."""
"""Return the /i/th connection within the Projection."""
raise NotImplementedError

def __iter__(self):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def find(self, command):

setup(
name="PyNN",
version="0.10.1.dev",
version="0.10.1",
packages=['pyNN', 'pyNN.nest', 'pyNN.neuron',
'pyNN.brian2', 'pyNN.common', 'pyNN.mock', 'pyNN.neuroml',
'pyNN.recording', 'pyNN.standardmodels', 'pyNN.descriptions',
Expand Down

0 comments on commit d76b4d0

Please sign in to comment.