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
3 changes: 1 addition & 2 deletions docs/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
# requires-python = ">=3.12"
# dependencies = [
# "higlass-python",
# "markupsafe==2.0.1",
# "setuptools",
# "packaging",
# "sphinx-js",
# "Sphinx",
# ]
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from docutils import nodes
from docutils.parsers.rst import Directive, directives
from pkg_resources import parse_version
from packaging.version import Version

from higlass import __version__

Expand Down Expand Up @@ -70,7 +70,7 @@
# built documents.
#
# The short X.Y version.
version = parse_version(__version__).base_version
version = Version(__version__).base_version
# The full version, including alpha/beta/rc tags.
release = __version__

Expand Down