cecil 0.0.10__py3-none-any.whl → 0.0.11__py3-none-any.whl

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.

Potentially problematic release.


This version of cecil might be problematic. Click here for more details.

cecil/client.py CHANGED
@@ -6,7 +6,6 @@ import snowflake.connector
6
6
  from pydantic import BaseModel
7
7
  from requests import auth
8
8
 
9
- from __about__ import __version__
10
9
  from .models import (
11
10
  AOI,
12
11
  AOICreate,
@@ -17,6 +16,8 @@ from .models import (
17
16
  SnowflakeCredentials,
18
17
  )
19
18
 
19
+ # TODO: find a way to get this version from __about__.py
20
+ SDK_VERSION = "0.0.11"
20
21
 
21
22
  # TODO: Documentation (Google style)
22
23
  # TODO: Add HTTP retries
@@ -101,7 +102,7 @@ class Client:
101
102
 
102
103
  self._set_auth()
103
104
 
104
- headers = {"cecil-python-sdk-version": __version__}
105
+ headers = {"cecil-python-sdk-version": SDK_VERSION}
105
106
 
106
107
  try:
107
108
  r = requests.request(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cecil
3
- Version: 0.0.10
3
+ Version: 0.0.11
4
4
  Summary: Python SDK for Cecil Earth
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE.txt
@@ -0,0 +1,7 @@
1
+ cecil/__init__.py,sha256=MF64bwUCd4sm3dvcxZnkb4ujHtxT_KeuXdD0nVieEt4,27
2
+ cecil/client.py,sha256=3e6Y-h4o4cGzHC_3w9EKcwiNukeOe2LNLkL7BDIkLHk,4521
3
+ cecil/models.py,sha256=eSkDhHSCJyW9OsOkK7eMYh4BXY5FI1Z_THOLVLcE8QA,2027
4
+ cecil-0.0.11.dist-info/METADATA,sha256=4qfewZyGTMHzgMXrfPGIxjvDFPC6vYPt0IUbGwcRY-g,2677
5
+ cecil-0.0.11.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
6
+ cecil-0.0.11.dist-info/licenses/LICENSE.txt,sha256=mUexcmfYx3bG1VIzAdQTOf_NzStYw6-QkKVdUY_d4i4,1066
7
+ cecil-0.0.11.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- cecil/__init__.py,sha256=MF64bwUCd4sm3dvcxZnkb4ujHtxT_KeuXdD0nVieEt4,27
2
- cecil/client.py,sha256=aXr6gho9NaZotpHcDmmO_XCdmfsUChyb6cKi1EC_aXc,4475
3
- cecil/models.py,sha256=eSkDhHSCJyW9OsOkK7eMYh4BXY5FI1Z_THOLVLcE8QA,2027
4
- cecil-0.0.10.dist-info/METADATA,sha256=ZCYjxeHDt69LzMZjkQdntRNIBLgEOpQyRYqX2pQ_6rw,2677
5
- cecil-0.0.10.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
6
- cecil-0.0.10.dist-info/licenses/LICENSE.txt,sha256=mUexcmfYx3bG1VIzAdQTOf_NzStYw6-QkKVdUY_d4i4,1066
7
- cecil-0.0.10.dist-info/RECORD,,
File without changes