diff --git a/MANIFEST.in b/MANIFEST.in index cc0d116..cb9d4f2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ -include LICENSE \ No newline at end of file +include LICENSE +prune tests/ \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 289d839..dfced83 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,9 +10,9 @@ on_rtd = os.environ.get('READTHEDOCS') == 'True' if on_rtd: - sys.path.insert(0, os.path.abspath('..')) + sys.path.insert(0, os.path.abspath('../src')) else: - sys.path.insert(0, os.path.abspath('..')) + sys.path.insert(0, os.path.abspath('../src')) class Mock(MagicMock): @@ -71,10 +71,10 @@ def __getattr__(cls, name): html_theme = 'sphinx_rtd_theme' html_theme_options = { - # 'logo': 'flowutils.png', - 'github_user': 'whitews', - 'github_repo': 'flowio', - 'github_banner': True + # 'logo': 'logo.png', + # 'github_user': 'whitews', + # 'github_repo': 'flowio', + # 'github_banner': True } # Add any paths that contain custom static files (such as style sheets) here, diff --git a/src/flowio/_version.py b/src/flowio/_version.py index 1b30400..0af8c8c 100644 --- a/src/flowio/_version.py +++ b/src/flowio/_version.py @@ -1,4 +1,4 @@ """ FlowIO version """ -__version__ = "1.3.0b0" +__version__ = "1.3.0"