Skip to content

Commit 4e2d9a5

Browse files
committed
Bump version and minor docs fixes
1 parent 054ecfb commit 4e2d9a5

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

docs/source/conf.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77

88
# -- Project information -----------------------------------------------------
99
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
10+
import os
11+
import sys
12+
13+
sys.path.insert(0, os.path.abspath("."))
14+
sys.path.insert(0, os.path.abspath("../../"))
1015

1116
project = "Python Freckle Client"
1217
copyright = "2023, OmbuLabs - The Lean Software Boutique, LLC"
@@ -31,7 +36,13 @@
3136
".rst": "restructuredtext",
3237
".md": "markdown",
3338
}
34-
autodoc_mock_imports = ["requests", "pydantic", "python-dateutil"]
39+
autodoc_mock_imports = [
40+
"requests",
41+
"pydantic",
42+
"python-dateutil",
43+
"dateutil",
44+
"pydantic_core",
45+
]
3546
# -- Options for HTML output -------------------------------------------------
3647
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
3748

freckle_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf-8 -*-
22
"""Freckle client package."""
3-
__version__ = "1.0.1" # pragma: no cover
3+
__version__ = "1.0.2" # pragma: no cover

noko_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf-8 -*-
22
"""Noko client package."""
3-
__version__ = "1.0.1" # pragma: no cover
3+
__version__ = "1.0.2" # pragma: no cover

0 commit comments

Comments
 (0)