Skip to content

Commit

Permalink
trying to fix pipy build, upped minorminor version
Browse files Browse the repository at this point in the history
  • Loading branch information
Espen Hagen committed Mar 25, 2020
1 parent 2bd53b1 commit 530c532
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
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.5"
__version__ = "2.0.6"

from .pointprocess import Synapse, PointProcess, StimIntElectrode
from .recextelectrode import RecExtElectrode, RecMEAElectrode
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __getattr__(cls, name):
# The short X.Y version.
version = '2.0'
# The full version, including alpha/beta/rc tags.
release = '2.0.5'
release = '2.0.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
11 changes: 4 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,25 +50,22 @@

setup(
name="LFPy",
version="2.0.5",
version="2.0.6",
maintainer="LFPy-team",
maintainer_email='lfpy@users.noreply.github.com',
packages=['LFPy'],
package_data={'LFPy': [os.path.join('test', '*.hoc'),
package_data={'LFPy': ['*.pyx',
os.path.join('test', '*.hoc'),
os.path.join('test', '*.py'),
os.path.join('test', 'sinsyn.mod'),
os.path.join('i686', '*'),
os.path.join('i686', '.libs', '*'),
os.path.join('x86_64', '*'),
os.path.join('x86_64', '.libs', '*'),
os.path.join('powerpc', '*'),
os.path.join('powerpc', '.libs', '*'),
]},
include_package_data=True,
cmdclass=cmdclass,
ext_modules=ext_modules,
url='http://LFPy.readthedocs.io',
download_url='https://github.com/LFPy/LFPy/tarball/v2.0.5',
download_url='https://github.com/LFPy/LFPy/tarball/v2.0.6',
license='LICENSE',
description='A module for modeling extracellular potentials of multicompartment neuron models built on NEURON',
long_description=long_description,
Expand Down

0 comments on commit 530c532

Please sign in to comment.