Skip to content

Commit 0e91a50

Browse files
alperyegmdenker
authored andcommitted
Version 0.4.1 Fix critical bug in setup
1 parent c137fb5 commit 0e91a50

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
# The short X.Y version.
5454
version = '0.4'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.4.0'
56+
release = '0.4.1'
5757

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

doc/install.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ For Debian/Ubuntu, we recommend to install numpy and scipy as system packages us
4040
Further packages are found on the Python package index (pypi) and should be installed with pip_::
4141
4242
$ pip install quantities
43-
$ pip install git+https://github.com/NeuralEnsemble/python-neo.git@snapshot-20150821#egg=neo-snapshot-20150821
43+
$ pip install neo
4444

4545
We highly recommend to install these packages using a virtual environment provided by virtualenv_ or locally in the home directory using the ``--user`` option of pip (e.g., ``pip install --user quantities``), neither of which require administrator privileges.
4646

@@ -52,7 +52,7 @@ On non-Linux operating systems we recommend using the Anaconda_ Python distribut
5252
$ conda create -n neuroscience python numpy scipy pip six
5353
$ source activate neuroscience
5454
$ pip install quantities
55-
$ pip install git+https://github.com/NeuralEnsemble/python-neo.git@snapshot-20150821#egg=neo-snapshot-20150821
55+
$ pip install neo
5656

5757

5858
Installation
@@ -73,8 +73,8 @@ To download and install manually, download the latest package from http://pypi.p
7373

7474
Then::
7575

76-
$ tar xzf elephant-0.4.0.tar.gz
77-
$ cd elephant-0.4.0
76+
$ tar xzf elephant-0.4.1.tar.gz
77+
$ cd elephant-0.4.1
7878
$ python setup.py install
7979
8080
or::

doc/release_notes.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Release Notes
33
*************
44

5+
Elephant 0.4.1 release notes
6+
============================
7+
March 23rd 2017
8+
9+
Other changes
10+
=============
11+
* Fix in `setup.py` to correctly import the current source density module
12+
513
Elephant 0.4.0 release notes
614
============================
715
March 22nd 2017

elephant/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
except ImportError:
2828
pass
2929

30-
__version__ = "0.4.0"
30+
__version__ = "0.4.1"

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616

1717
setup(
1818
name="elephant",
19-
version='0.4.0',
19+
version='0.4.1',
2020
packages=['elephant', 'elephant.test'],
21-
package_data = {'elephant' : [os.path.join('csd_methods', 'test_data.mat'),
22-
os.path.join('csd_methods', 'LICENSE'),
23-
os.path.join('csd_methods', 'README.md'),
24-
os.path.join('csd_methods', '*.py')]},
21+
package_data = {'elephant' : [os.path.join('current_source_density_src', 'test_data.mat'),
22+
os.path.join('current_source_density_src', 'LICENSE'),
23+
os.path.join('current_source_density_src', 'README.md'),
24+
os.path.join('current_source_density_src', '*.py')]},
2525

2626
install_requires=install_requires,
2727
extras_require=extras_require,

0 commit comments

Comments
 (0)