python-sdk-remote 0.0.85__tar.gz → 0.0.86__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 (19) hide show
  1. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/PKG-INFO +1 -1
  2. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote/src/mini_logger.py +5 -2
  3. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote.egg-info/PKG-INFO +1 -1
  4. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/setup.py +1 -1
  5. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/README.md +0 -0
  6. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/pyproject.toml +0 -0
  7. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote/src/__init__.py +0 -0
  8. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote/src/constants.py +0 -0
  9. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote/src/item.py +0 -0
  10. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote/src/our_object.py +0 -0
  11. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote/src/unified_json.py +0 -0
  12. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote/src/utilities.py +0 -0
  13. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote/src/valid_json_versions.py +0 -0
  14. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote/src/validate_environment.py +0 -0
  15. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote.egg-info/SOURCES.txt +0 -0
  16. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote.egg-info/dependency_links.txt +0 -0
  17. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote.egg-info/requires.txt +0 -0
  18. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/python_sdk_remote.egg-info/top_level.txt +0 -0
  19. {python-sdk-remote-0.0.85 → python-sdk-remote-0.0.86}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-sdk-remote
3
- Version: 0.0.85
3
+ Version: 0.0.86
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,17 +4,20 @@ import sys
4
4
  from datetime import datetime
5
5
 
6
6
  LOGGER_MINIMUM_SEVERITY = os.getenv("LOGGER_MINIMUM_SEVERITY", "INFO").upper()
7
+ # logging expects NOTSET/DEBUG/INFO/WARNING/ERROR/FATAL/CRITICAL
7
8
  if LOGGER_MINIMUM_SEVERITY.isdigit():
8
9
  logger_minimum_severity = int(LOGGER_MINIMUM_SEVERITY)
9
10
  # Values from Logger.MessageSeverity
10
- if logger_minimum_severity < 600:
11
+ if logger_minimum_severity < 400:
12
+ LOGGER_MINIMUM_SEVERITY = "DEBUG"
13
+ elif logger_minimum_severity < 600:
11
14
  LOGGER_MINIMUM_SEVERITY = "INFO"
12
15
  elif logger_minimum_severity < 700:
13
16
  LOGGER_MINIMUM_SEVERITY = "WARNING"
14
17
  elif logger_minimum_severity < 800:
15
18
  LOGGER_MINIMUM_SEVERITY = "ERROR"
16
19
  else:
17
- LOGGER_MINIMUM_SEVERITY = "EXCEPTION"
20
+ LOGGER_MINIMUM_SEVERITY = "CRITICAL"
18
21
 
19
22
  logging.basicConfig(level=LOGGER_MINIMUM_SEVERITY, stream=sys.stdout,
20
23
  format="%(asctime)s - %(message)s")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-sdk-remote
3
- Version: 0.0.85
3
+ Version: 0.0.86
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.85', # https://pypi.org/project/python-sdk-remote/
10
+ version='0.0.86', # 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",