Skip to content

Commit 15a240d

Browse files
author
mbarber
committed
rejig sphinx
1 parent e7594f0 commit 15a240d

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![PyPI version](https://badge.fury.io/py/openprotein-python.svg)](https://pypi.org/project/openprotein-python/)
2-
[![Coverage](https://github.com/OpenProteinAI/openprotein-python-private/raw/develop/apidocs/source/coverage.svg)](https://pypi.org/project/openprotein-python/)
2+
[![Coverage](https://dev.docs.openprotein.ai/api-python/_images/coverage.svg)](https://pypi.org/project/openprotein-python/)
33

44
# openprotein-python
55
Python interface for the OpenProtein.AI REST API.
-3.55 KB
Binary file not shown.

apidocs/build/html/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apidocs/source/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
import os
1010
import sys
11-
sys.path.insert(0, os.path.abspath('../..'))
11+
sys.path.insert(0, os.path.abspath('../../'))
12+
print("HERE", sys.path)
1213

1314

1415
project = 'OpenProtein-Python'

openprotein/_version.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
try:
22
from importlib.metadata import version
33
except ModuleNotFoundError:
4-
from importlib_metadata import version # py 3.7
4+
from importlib_metadata import version # py37
5+
6+
try:
7+
__version__ = version("openprotein-python")
8+
except:
9+
__version__ = "None"
510

6-
__version__ = version("openprotein-python")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "openprotein_python"
33
packages = [{include = "openprotein"}]
4-
version = "0.1.1b15"
4+
version = "0.1.1b17"
55
description = "OpenProtein Python interface."
66
license = "MIT"
77
readme = "README.md"

0 commit comments

Comments
 (0)