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 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
1116project = "Python Freckle Client"
1217copyright = "2023, OmbuLabs - The Lean Software Boutique, LLC"
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
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22"""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 11# -*- coding: utf-8 -*-
22"""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