Commit 4fde57be authored by Alexandre Mestiashvili's avatar Alexandre Mestiashvili
Browse files

New upstream version 1.1.6+dfsg

parent 77e740cc
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
1.1.6
 - fix: improve support for Confocor FCS file format
   (see discussion in #37)
 - ref: make pathlib.Path a standard in readfiles
 - code cleanup
 - drop support for Python<3.6
1.1.5
 - docs: fix build with recent version of latex (#191)
1.1.4
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ at the `issues page <https://github.com/FCS-analysis/PyCorrFit/wiki/Creating-a-n


.. |PyCorrFit| image:: https://raw.github.com/FCS-analysis/PyCorrFit/master/doc/Images/PyCorrFit_logo_dark.png
.. |PyPI Version| image:: http://img.shields.io/pypi/v/PyCorrFit.svg
.. |PyPI Version| image:: https://img.shields.io/pypi/v/PyCorrFit.svg
   :target: https://pypi.python.org/pypi/pycorrfit
.. |Build Status Win| image:: https://img.shields.io/appveyor/ci/paulmueller/PyCorrFit/master.svg?label=win
   :target: https://ci.appveyor.com/project/paulmueller/pycorrfit
+9 −5
Original line number Diff line number Diff line
.. _index:

PyCorrFit documentation
=======================

.. image:: _static/PyCorrFit_logo_dark.png

|

Welcome to the documentation of PyCorrFit (version |release|), a data analysis software for
fluorescence correlation spectroscopy (FCS).

Documentation
=============

.. toctree::
   :maxdepth: 1
   :caption: Contents:

   :maxdepth: 2

   sec_about
   sec_gallery
   sec_getting_started
   sec_contribute

.. toctree::
   :maxdepth: 1

   sec_changelog


+1 −2
Original line number Diff line number Diff line
@@ -3,8 +3,7 @@ from os.path import dirname, abspath, split
import sys

sys.path = [split(abspath(dirname(__file__)))[0]] + sys.path

from pycorrfit.gui import main
from pycorrfit.gui import main  # noqa: E402


if __name__ == "__main__":
+1 −1
Original line number Diff line number Diff line
@@ -138,4 +138,4 @@ if True: # pragma: no cover
            save_version(longversion, versionfile)

    # PEP 440-conform development version:
    version = ".dev".join(longversion.split("-")[:2])
    version = ".post".join(longversion.split("-")[:2])
Loading