Skip to content

Commit bb1ed70

Browse files
committed
Next development iteration v0.9.10.dev0.
1 parent 4e62512 commit bb1ed70

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

docs/conf.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
import os
44
import sys
55

6+
src_dir = os.path.abspath(os.path.join('..', 'src'))
7+
sys.path.insert(0, src_dir)
8+
import gpsea
69

710
# -- General configuration ------------------------------------------------
811

@@ -16,8 +19,6 @@
1619
# -- General configuration ---------------------------------------------------
1720
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1821

19-
src_dir = os.path.abspath(os.path.join('..', 'src'))
20-
sys.path.insert(0, src_dir)
2122
extensions = [
2223
'sphinx.ext.autodoc',
2324
'sphinx.ext.autosummary',
@@ -62,9 +63,9 @@
6263
# built documents.
6364
#
6465
# The short X.Y version.
65-
version = u'0.9'
66+
#version = u''
6667
# The full version, including alpha/beta/rc tags.
67-
release = u'0.9.9-dev0'
68+
release = gpsea.__version__
6869

6970
# The language for content autogenerated by Sphinx. Refer to documentation
7071
# for a list of supported languages.
@@ -207,8 +208,10 @@
207208
"python": ("https://docs.python.org/3/", None),
208209
"hpotk": ("https://ielis.github.io/hpo-toolkit/stable/", None),
209210
"pandas": ("https://pandas.pydata.org/pandas-docs/version/2.0.0/", None),
211+
"phenopacket-store-toolkit": ("https://monarch-initiative.github.io/phenopacket-store-toolkit/stable/", None),
210212
"requests": ("https://docs.python-requests.org/en/stable/", None),
211213
"scipy": ("https://docs.scipy.org/doc/scipy-1.11.0/", None),
214+
"stairval": ("https://ielis.github.io/stairval/stable/", None),
212215
"statsmodels": ("https://www.statsmodels.org/stable/", None),
213216
"numpy": ("https://numpy.org/doc/stable/", None),
214217
}

src/gpsea/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
GPSEA is a library for finding genotype-phenotype associations.
33
"""
44

5-
__version__ = "0.9.9"
5+
__version__ = "0.9.10.dev0"
66

77
_overwrite = False
88
"""

0 commit comments

Comments
 (0)