diff --git a/LFPy/__init__.py b/LFPy/__init__.py index 53027463..065af1a3 100644 --- a/LFPy/__init__.py +++ b/LFPy/__init__.py @@ -41,7 +41,7 @@ * run_simulations - Functions to run NEURON simulations """ -__version__ = "2.0.7.rc1" +__version__ = "2.0.7" from .pointprocess import Synapse, PointProcess, StimIntElectrode from .recextelectrode import RecExtElectrode, RecMEAElectrode diff --git a/doc/conf.py b/doc/conf.py index 724a6427..157369f3 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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.7.rc1' +release = '2.0.7' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 0cf925d4..4c3c3a78 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ setup( name="LFPy", - version="2.0.7.rc1", + version="2.0.7", maintainer="LFPy-team", maintainer_email='lfpy@users.noreply.github.com', packages=['LFPy'], @@ -64,7 +64,7 @@ cmdclass=cmdclass, ext_modules=ext_modules, url='http://LFPy.readthedocs.io', - download_url='https://github.com/LFPy/LFPy/tarball/v2.0.7.rc1', + download_url='https://github.com/LFPy/LFPy/tarball/v2.0.7', license='LICENSE', description='A module for modeling extracellular potentials of multicompartment neuron models built on NEURON', long_description=long_description,