python-sdk-remote 0.0.107__tar.gz → 0.0.109__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.

Potentially problematic release.


This version of python-sdk-remote might be problematic. Click here for more details.

Files changed (20) hide show
  1. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/PKG-INFO +1 -1
  2. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/pyproject.toml +1 -1
  3. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote/src/validate_environment.py +2 -3
  4. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote.egg-info/PKG-INFO +1 -1
  5. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/setup.py +1 -1
  6. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/README.md +0 -0
  7. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote/src/__init__.py +0 -0
  8. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote/src/constants.py +0 -0
  9. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote/src/http_response.py +0 -0
  10. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote/src/item.py +0 -0
  11. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote/src/mini_logger.py +0 -0
  12. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote/src/our_object.py +0 -0
  13. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote/src/unified_json.py +0 -0
  14. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote/src/utilities.py +0 -0
  15. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote/src/valid_json_versions.py +0 -0
  16. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote.egg-info/SOURCES.txt +0 -0
  17. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote.egg-info/dependency_links.txt +0 -0
  18. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote.egg-info/requires.txt +0 -0
  19. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/python_sdk_remote.egg-info/top_level.txt +0 -0
  20. {python_sdk_remote-0.0.107 → python_sdk_remote-0.0.109}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-sdk-remote
3
- Version: 0.0.107
3
+ Version: 0.0.109
4
4
  Summary: PyPI Package for Circles Python SDK Local Python
5
5
  Home-page: https://github.com/circles-zone/python-sdk-remote-python-package
6
6
  Author: Circles
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "python-sdk-local"
7
- version = "0.0.75" # https://pypi.org/project/python-sdk-local
7
+ version = "0.0.76" # https://pypi.org/project/python-sdk-local
8
8
  description = "python-sdk-local Python Package"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -2,9 +2,8 @@
2
2
  from .constants import BRAND_NAME, ENVIRONMENT_NAME, LOGZIO_TOKEN, GOOGLE_PORT_FOR_AUTHENTICATION
3
3
 
4
4
 
5
- # TODO Align with https://github.com/circles-zone/typescript-sdk-remote-typescript-package/edit/dev/typescript-sdk/src/utils/index.ts validateTenantEnvironmentVariables()
6
- # TODO: validate_enviroment_variables() -> validate_environment_variables()
7
- def validate_enviroment_variables():
5
+ # TODO Align with https://github.com/circles-zone/typescript-sdk-remote-typescript-package/edit/dev/typescript-sdk/src/utils/index.ts validateTenantEnvironmentVariables() # noqa501
6
+ def validate_environment_variables():
8
7
  """This is done for cross variables validation, as single variables are validated by our_get_env.
9
8
  This should be called only once."""
10
9
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-sdk-remote
3
- Version: 0.0.107
3
+ Version: 0.0.109
4
4
  Summary: PyPI Package for Circles Python SDK Local Python
5
5
  Home-page: https://github.com/circles-zone/python-sdk-remote-python-package
6
6
  Author: Circles
@@ -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.107', # https://pypi.org/project/python-sdk-remote/
10
+ version='0.0.109', # https://pypi.org/project/python-sdk-remote/
11
11
  author="Circles",
12
12
  author_email="info@circles.life",
13
13
  description="PyPI Package for Circles Python SDK Local Python",