t2d2-sdk 2.3.0__tar.gz → 2.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: t2d2-sdk
3
- Version: 2.3.0
3
+ Version: 2.3.2
4
4
  Summary: T2D2 SDK
5
5
  Author-email: Badri Hiriyur <badri@t2d2.ai>
6
6
  Project-URL: Homepage, https://t2d2.ai
@@ -14,6 +14,7 @@ License-File: LICENSE
14
14
  Requires-Dist: boto3
15
15
  Requires-Dist: requests
16
16
  Requires-Dist: sentry_sdk
17
+ Dynamic: license-file
17
18
 
18
19
  ## Description
19
20
 
@@ -1,4 +1,5 @@
1
1
  myst-parser
2
2
  jinja2==3.1
3
3
  requests
4
- boto3
4
+ boto3
5
+ sentry-sdk
@@ -12,7 +12,7 @@ sys.path.insert(0, os.path.abspath('../../src'))
12
12
  project = 'T2D2 SDK'
13
13
  copyright = '2024, Badri Hiriyur'
14
14
  author = 'Badri Hiriyur'
15
- release = 'v1.0'
15
+ release = 'v1.1'
16
16
 
17
17
  # -- General configuration ---------------------------------------------------
18
18
  # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
@@ -22,10 +22,11 @@ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage', 'sphinx.ext.napoleon'
22
22
  templates_path = ['_templates']
23
23
  exclude_patterns = []
24
24
 
25
-
25
+ myst_heading_anchors = 3
26
26
 
27
27
  # -- Options for HTML output -------------------------------------------------
28
28
  # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
29
29
 
30
30
  html_theme = 'nature'
31
31
  html_static_path = ['_static']
32
+ suppress_warnings = ["myst.header"] # This will suppress the header level warnings
@@ -1,8 +1,13 @@
1
- # file generated by setuptools_scm
1
+ # file generated by setuptools-scm
2
2
  # don't change, don't track in version control
3
+
4
+ __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
5
+
3
6
  TYPE_CHECKING = False
4
7
  if TYPE_CHECKING:
5
- from typing import Tuple, Union
8
+ from typing import Tuple
9
+ from typing import Union
10
+
6
11
  VERSION_TUPLE = Tuple[Union[int, str], ...]
7
12
  else:
8
13
  VERSION_TUPLE = object
@@ -12,5 +17,5 @@ __version__: str
12
17
  __version_tuple__: VERSION_TUPLE
13
18
  version_tuple: VERSION_TUPLE
14
19
 
15
- __version__ = version = '2.3.0'
16
- __version_tuple__ = version_tuple = (2, 3, 0)
20
+ __version__ = version = '2.3.2'
21
+ __version_tuple__ = version_tuple = (2, 3, 2)
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: t2d2-sdk
3
- Version: 2.3.0
3
+ Version: 2.3.2
4
4
  Summary: T2D2 SDK
5
5
  Author-email: Badri Hiriyur <badri@t2d2.ai>
6
6
  Project-URL: Homepage, https://t2d2.ai
@@ -14,6 +14,7 @@ License-File: LICENSE
14
14
  Requires-Dist: boto3
15
15
  Requires-Dist: requests
16
16
  Requires-Dist: sentry_sdk
17
+ Dynamic: license-file
17
18
 
18
19
  ## Description
19
20