Skip to content
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
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
author = u'Lorenzo Crippa and Adriano Amaricci'

# The short X.Y version
version = u'6.0'
version = u'6.1'
# The full version, including alpha/beta/rc tags
release = u'6.0.0'
release = u'6.1.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "edipack2py"
version = "6.0.0"
version = "6.1.0"
description = "EDIpack Python module"
license = { text = "GPL-3.0-or-later" }
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions src/edipack2py/func_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,7 @@ def get_g0and(self, zeta, bath, ishape=None, typ="n"):
(for the superconducting case). Can be :code:`n` for normal or :code:`a`\
for anomalous.

:raise ValueError: If :code:`zeta` is an array of zeros (cutoff at :math:`10^{-10}` )
:raise ValueError: If :code:`zeta` is zero
:raise ValueError: If :code:`ishape` is not 3 or 5.

:return: An array of complex that contains :math:`G^{And}_{0}(z)` function \
Expand Down Expand Up @@ -1172,7 +1172,7 @@ def get_delta(self, zeta, bath, ishape=None, typ="n"):
(for the superconducting case). Can be :code:`n` for normal or :code:`a`\
for anomalous.

:raise ValueError: If :code:`zeta` is an array of zeros (cutoff at :math:`10^{-10}` )
:raise ValueError: If :code:`zeta` is zero
:raise ValueError: If :code:`ishape` is not 3 or 5.

:return: An array of complex that contains :math:`\\Delta(z)` along the \
Expand Down
Loading