Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI issues #111

Merged
merged 3 commits into from
Mar 18, 2024
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
5 changes: 2 additions & 3 deletions LICENSES-3RD-PARTY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ This license applies to Versioneer code.

To make Versioneer easier to embed, all its code is dedicated to the public
domain. The `_version.py` that it creates is also in the public domain.
Specifically, both are released under the Creative Commons "Public Domain
Dedication" license (CC0-1.0), as described in
https://creativecommons.org/publicdomain/zero/1.0/ .
Specifically, both are released under the "Unlicense", as described in
https://unlicense.org/.
-------------------------------------------------------------------------------
This license applies to GitHub Actions code.

Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sphinx==4.4.0
sphinx-rtd-theme==1.0.0
sphinx==7.2.6
sphinx-rtd-theme==2.0.0
5 changes: 2 additions & 3 deletions src/lineage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,9 @@
from lineage.visualization import plot_chromosomes

# set version string with Versioneer
from lineage._version import get_versions
from . import _version

__version__ = get_versions()["version"]
del get_versions
__version__ = _version.get_versions()["version"]

logger = logging.getLogger(__name__)

Expand Down
Loading
Loading