Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Mar 22, 2017
1 parent b9d13bc commit 3cd5256
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
# The short X.Y version.
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = '0.5.0beta1'
release = '0.5.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 4 additions & 4 deletions doc/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,20 @@ Installing from the Python Package Index

If you have pip_ installed::

$ pip install https://github.com/NeuralEnsemble/python-neo/archive/neo-0.5.0beta1.zip
$ pip install https://github.com/NeuralEnsemble/python-neo/archive/neo-0.5.0.zip
This will automatically download and install the latest release (again
you may need to have administrator privileges on the machine you are installing
on).

To download and install manually, download:

https://github.com/NeuralEnsemble/python-neo/archive/neo-0.5.0beta1.zip
https://github.com/NeuralEnsemble/python-neo/archive/neo-0.5.0.zip

Then::

$ unzip neo-0.5.0beta1.zip
$ cd neo-0.5.0beta1
$ unzip neo-0.5.0.zip
$ cd neo-0.5.0
$ python setup.py install
or::
Expand Down
12 changes: 7 additions & 5 deletions doc/source/releases/0.5.0.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=============================
Neo 0.5.0-beta1 release notes
=============================
=======================
Neo 0.5.0 release notes
=======================

8th March 2017
22nd March 2017


For Neo 0.5, we have taken the opportunity to simplify the Neo object model.
Expand Down Expand Up @@ -124,10 +124,12 @@ Other changes

* added :class:`NixIO` (`about the NIX format`_)
* added :class:`IgorIO`
* added :class:`NestIO` (for data files produced by the `NEST simulator`_)
* :class:`NeoHdf5IO` is now read-only. It will read data files produced by earlier versions
of Neo, but another HDF5-based IO, e.g. :class:`NixIO`, should be used for writing data.

* many fixes/improvements to existing IO modules. All IO modules should now work with Python 3.

.. https://github.com/NeuralEnsemble/python-neo/issues?utf8=✓&q=is%3Aissue%20is%3Aclosed%20created%3A%3E2014-02-01%20
.. _`about the NIX format`: https://github.com/G-Node/nix/wiki
.. _`NEST simulator`: http://nest-simulator.org
2 changes: 1 addition & 1 deletion neo/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

version = '0.5.0beta1'
version = '0.5.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name = "neo",
version = '0.5.0beta1',
version = '0.5.0',
packages = ['neo', 'neo.core', 'neo.io', 'neo.test', 'neo.test.iotest'],
install_requires=install_requires,
author = "Neo authors and contributors",
Expand Down

0 comments on commit 3cd5256

Please sign in to comment.