Skip to content

Commit 4c488ec

Browse files
committed
Update __init__.py
1 parent e104fa3 commit 4c488ec

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

docs/source/conf.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
#
1313
import os
1414
import sys
15-
sys.path.insert(0, os.path.abspath('../../src'))
1615

16+
sys.path.insert(0, os.path.abspath('../../src'))
1717

1818
# -- Project information -----------------------------------------------------
1919

@@ -22,7 +22,8 @@
2222
author = 'SuperAnnotate AI'
2323

2424
# The full version, including alpha/beta/rc tags
25-
from superannotate.version import __version__
25+
from superannotate import __version__
26+
2627
release = __version__
2728

2829
# -- General configuration ---------------------------------------------------
@@ -57,7 +58,7 @@
5758
html_show_sourcelink = False
5859

5960
html_context = {
60-
"display_github": False, # Add 'Edit on Github' link instead of 'View page source'
61-
"last_updated": True,
62-
"commit": False,
63-
}
61+
"display_github": False, # Add 'Edit on Github' link instead of 'View page source'
62+
"last_updated": True,
63+
"commit": False,
64+
}

src/superannotate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import sys
33

4-
__version__ = "4.4.1dev10"
4+
__version__ = "4.4.1b1"
55

66
sys.path.append(os.path.split(os.path.realpath(__file__))[0])
77

0 commit comments

Comments
 (0)