Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release v2.0.4 #152

Merged
merged 5 commits into from
Dec 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
addons:
apt:
packages:
Expand Down
2 changes: 1 addition & 1 deletion LFPy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* run_simulations - Functions to run NEURON simulations
"""

__version__ = "2.0.3"
__version__ = "2.0.4"

from .pointprocess import Synapse, PointProcess, StimIntElectrode
from .recextelectrode import RecExtElectrode, RecMEAElectrode
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# The short X.Y version.
version = '2.0'
# The full version, including alpha/beta/rc tags.
release = '2.0.3'
release = '2.0.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -184,7 +184,7 @@
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'LFPy.tex', u'LFPy Homepage',
u'Espen Hagen', 'manual'),
u'LFPy-team', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -221,5 +221,5 @@
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'lfpy', u'LFPy Homepage',
[u'Espen Hagen'], 1)
[u'LFPy-team'], 1)
]
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@

setup(
name="LFPy",
version="2.0.3",
maintainer="Espen Hagen",
maintainer_email='espen.hagen@fys.uio.no',
version="2.0.4",
maintainer="LFPy-team",
maintainer_email='lfpy@users.noreply.github.com',
packages=['LFPy'],
package_data={'LFPy': [os.path.join('test', '*.hoc'),
os.path.join('test', '*.py'),
Expand All @@ -68,7 +68,7 @@
cmdclass=cmdclass,
ext_modules=ext_modules,
url='http://LFPy.readthedocs.io',
download_url='https://github.com/LFPy/LFPy/tarball/v2.0.3',
download_url='https://github.com/LFPy/LFPy/tarball/v2.0.4',
license='LICENSE',
description='A module for modeling extracellular potentials of multicompartment neuron models built on NEURON',
long_description=long_description,
Expand All @@ -80,6 +80,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Cython',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
Expand Down