python-sdk-local 0.0.135__tar.gz → 0.0.136__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.
Files changed (19) hide show
  1. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/PKG-INFO +3 -2
  2. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local.egg-info/PKG-INFO +3 -2
  3. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local.egg-info/requires.txt +2 -1
  4. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/setup.py +2 -2
  5. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/README.md +0 -0
  6. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/pyproject.toml +0 -0
  7. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local/src/__init__.py +0 -0
  8. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local/src/constants.py +0 -0
  9. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local/src/http_response.py +0 -0
  10. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local/src/item.py +0 -0
  11. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local/src/our_object.py +0 -0
  12. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local/src/unified_json.py +0 -0
  13. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local/src/utilities.py +0 -0
  14. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local/src/valid_json_versions.py +0 -0
  15. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local/src/validate_environment.py +0 -0
  16. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local.egg-info/SOURCES.txt +0 -0
  17. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local.egg-info/dependency_links.txt +0 -0
  18. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/python_sdk_local.egg-info/top_level.txt +0 -0
  19. {python_sdk_local-0.0.135 → python_sdk_local-0.0.136}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-sdk-local
3
- Version: 0.0.135
3
+ Version: 0.0.136
4
4
  Summary: PyPI Package for Circles Python SDK Local Python
5
5
  Home-page: https://github.com/circles-zone/python-sdk-local-python-package
6
6
  Author: Circles
@@ -13,6 +13,7 @@ Requires-Dist: requests
13
13
  Requires-Dist: python-dotenv
14
14
  Requires-Dist: url-remote
15
15
  Requires-Dist: pyjwt
16
- Requires-Dist: python-sdk-remoteuser-context-remote
16
+ Requires-Dist: python-sdk-remote
17
+ Requires-Dist: user-context-remote
17
18
 
18
19
  This is a package for sharing common functions used in different repositories
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-sdk-local
3
- Version: 0.0.135
3
+ Version: 0.0.136
4
4
  Summary: PyPI Package for Circles Python SDK Local Python
5
5
  Home-page: https://github.com/circles-zone/python-sdk-local-python-package
6
6
  Author: Circles
@@ -13,6 +13,7 @@ Requires-Dist: requests
13
13
  Requires-Dist: python-dotenv
14
14
  Requires-Dist: url-remote
15
15
  Requires-Dist: pyjwt
16
- Requires-Dist: python-sdk-remoteuser-context-remote
16
+ Requires-Dist: python-sdk-remote
17
+ Requires-Dist: user-context-remote
17
18
 
18
19
  This is a package for sharing common functions used in different repositories
@@ -2,4 +2,5 @@ requests
2
2
  python-dotenv
3
3
  url-remote
4
4
  pyjwt
5
- python-sdk-remoteuser-context-remote
5
+ python-sdk-remote
6
+ user-context-remote
@@ -7,7 +7,7 @@ package_dir = PACKAGE_NAME.replace("-", "_")
7
7
  # python -m build needs pyproject.toml or setup.py
8
8
  setuptools.setup(
9
9
  name=PACKAGE_NAME,
10
- version='0.0.135', # https://pypi.org/project/python-sdk-local/
10
+ version='0.0.136', # https://pypi.org/project/python-sdk-local/
11
11
  author="Circles",
12
12
  author_email="info@circlez.ai",
13
13
  description="PyPI Package for Circles Python SDK Local Python",
@@ -27,7 +27,7 @@ setuptools.setup(
27
27
  "python-dotenv",
28
28
  "url-remote",
29
29
  "pyjwt",
30
- "python-sdk-remote"
30
+ "python-sdk-remote",
31
31
  "user-context-remote",
32
32
  ]
33
33
  )