File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 7
7
8
8
# -- Project information -----------------------------------------------------
9
9
# 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 ("../../" ))
10
15
11
16
project = "Python Freckle Client"
12
17
copyright = "2023, OmbuLabs - The Lean Software Boutique, LLC"
31
36
".rst" : "restructuredtext" ,
32
37
".md" : "markdown" ,
33
38
}
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
+ ]
35
46
# -- Options for HTML output -------------------------------------------------
36
47
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
37
48
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
"""Freckle client package."""
3
- __version__ = "1.0.1 " # pragma: no cover
3
+ __version__ = "1.0.2 " # pragma: no cover
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
"""Noko client package."""
3
- __version__ = "1.0.1 " # pragma: no cover
3
+ __version__ = "1.0.2 " # pragma: no cover
You can’t perform that action at this time.
0 commit comments