python-sdk-remote 0.0.76__tar.gz → 0.0.77__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.
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/PKG-INFO +1 -1
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote/src/utilities.py +10 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote.egg-info/PKG-INFO +1 -1
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/setup.py +1 -1
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/README.md +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/pyproject.toml +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote/src/__init__.py +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote/src/constants.py +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote/src/item.py +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote/src/mini_logger.py +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote/src/our_object.py +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote/src/unified_json.py +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote/src/valid_json_versions.py +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote.egg-info/SOURCES.txt +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote.egg-info/dependency_links.txt +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote.egg-info/requires.txt +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote.egg-info/top_level.txt +0 -0
- {python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/setup.cfg +0 -0
|
@@ -305,3 +305,13 @@ def get_sql_password() -> str:
|
|
|
305
305
|
|
|
306
306
|
def remove_digits(text: str) -> str:
|
|
307
307
|
return ''.join([i for i in text if not i.isdigit()])
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
def validate_environment_variables():
|
|
311
|
+
"""This is done for cross variables validation, as single variables are validated by our_get_env.
|
|
312
|
+
This should be called only once."""
|
|
313
|
+
|
|
314
|
+
pass # No cross validation needed yet
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
validate_environment_variables()
|
|
@@ -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.
|
|
10
|
+
version='0.0.77', # 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",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote/src/valid_json_versions.py
RENAMED
|
File without changes
|
{python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote.egg-info/requires.txt
RENAMED
|
File without changes
|
{python-sdk-remote-0.0.76 → python-sdk-remote-0.0.77}/python_sdk_remote.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|