Skip to content

Commit

Permalink
release v2.0.4 (#152)
Browse files Browse the repository at this point in the history
* prep bugfix release v2.0.4

* maintainer_email='lfpy@users.github.com'

* it's a team effort.

* use noreply email

* added py 3.7 and 3.8 to testing/supported versions
  • Loading branch information
espenhgn committed Dec 5, 2019
1 parent 159f583 commit deb24ce
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
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

0 comments on commit deb24ce

Please sign in to comment.