malevich-coretools 0.3.10__tar.gz → 0.3.11__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 malevich-coretools might be problematic. Click here for more details.
- {malevich-coretools-0.3.10/malevich_coretools.egg-info → malevich-coretools-0.3.11}/PKG-INFO +1 -1
- malevich-coretools-0.3.11/VERSION +1 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/abstract/abstract.py +1 -1
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/utils.py +10 -2
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11/malevich_coretools.egg-info}/PKG-INFO +1 -1
- malevich-coretools-0.3.10/VERSION +0 -1
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/LICENSE +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/MANIFEST.in +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/README.md +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/__init__.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/abstract/__init__.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/abstract/statuses.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/admin/__init__.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/admin/utils.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/batch/__init__.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/batch/utils.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/funcs/__init__.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/funcs/checks.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/funcs/funcs.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/funcs/helpers.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/secondary/__init__.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/secondary/config.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/secondary/const.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/secondary/helpers.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/secondary/kafka_utils.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/tools/__init__.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/tools/abstract.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/tools/vast.py +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools.egg-info/SOURCES.txt +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools.egg-info/dependency_links.txt +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools.egg-info/requires.txt +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools.egg-info/top_level.txt +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/pyproject.toml +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/requirements.txt +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/setup.cfg +0 -0
- {malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/setup.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.3.11
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/abstract/abstract.py
RENAMED
|
@@ -111,7 +111,7 @@ class UserApp(BaseModel):
|
|
|
111
111
|
image: JsonImage
|
|
112
112
|
platform: str
|
|
113
113
|
platformSettings: Optional[str] = None
|
|
114
|
-
extraCollectionsFrom: Optional[Dict[str, Alias.Id]] = None
|
|
114
|
+
extraCollectionsFrom: Optional[Dict[str, List[Alias.Id]]] = None
|
|
115
115
|
|
|
116
116
|
|
|
117
117
|
class UserTask(BaseModel):
|
|
@@ -1563,7 +1563,7 @@ def create_app(
|
|
|
1563
1563
|
image_auth: Optional[AUTH] = None,
|
|
1564
1564
|
platform: str = "base",
|
|
1565
1565
|
platform_settings: Optional[str] = None,
|
|
1566
|
-
extra_collections_from: Optional[Dict[str, str]] = None,
|
|
1566
|
+
extra_collections_from: Optional[Dict[str, Union[List[str], str]]] = None,
|
|
1567
1567
|
wait: bool = True,
|
|
1568
1568
|
*,
|
|
1569
1569
|
use_system_auth: bool = True,
|
|
@@ -1586,6 +1586,10 @@ def create_app(
|
|
|
1586
1586
|
if Config.WITH_WARNINGS and (image_user is None or image_token is None):
|
|
1587
1587
|
Config.logger.warning("image_auth not set")
|
|
1588
1588
|
json_image = JsonImage(ref=image_ref, user=image_user, token=image_token)
|
|
1589
|
+
if extra_collections_from is not None:
|
|
1590
|
+
for k, v in extra_collections_from.items():
|
|
1591
|
+
if isinstance(v, str):
|
|
1592
|
+
extra_collections_from[k] = [v]
|
|
1589
1593
|
data = UserApp(
|
|
1590
1594
|
appId=app_id,
|
|
1591
1595
|
inputId=input_id,
|
|
@@ -1613,7 +1617,7 @@ def update_app(
|
|
|
1613
1617
|
image_auth: Optional[AUTH] = None,
|
|
1614
1618
|
platform: str = "base",
|
|
1615
1619
|
platform_settings: Optional[str] = None,
|
|
1616
|
-
extra_collections_from: Optional[Dict[str, str]] = None,
|
|
1620
|
+
extra_collections_from: Optional[Dict[str, Union[List[str], str]]] = None,
|
|
1617
1621
|
wait: bool = True,
|
|
1618
1622
|
*,
|
|
1619
1623
|
use_system_auth: bool = True,
|
|
@@ -1635,6 +1639,10 @@ def update_app(
|
|
|
1635
1639
|
if Config.WITH_WARNINGS and (image_user is None or image_token is None):
|
|
1636
1640
|
Config.logger.warning("image_auth not set")
|
|
1637
1641
|
json_image = JsonImage(ref=image_ref, user=image_user, token=image_token)
|
|
1642
|
+
if extra_collections_from is not None:
|
|
1643
|
+
for k, v in extra_collections_from.items():
|
|
1644
|
+
if isinstance(v, str):
|
|
1645
|
+
extra_collections_from[k] = [v]
|
|
1638
1646
|
data = UserApp(
|
|
1639
1647
|
appId=app_id,
|
|
1640
1648
|
inputId=input_id,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.3.10
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/abstract/__init__.py
RENAMED
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/abstract/statuses.py
RENAMED
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/admin/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/batch/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/funcs/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/secondary/__init__.py
RENAMED
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/secondary/config.py
RENAMED
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/secondary/const.py
RENAMED
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/secondary/helpers.py
RENAMED
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/secondary/kafka_utils.py
RENAMED
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/tools/__init__.py
RENAMED
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools/tools/abstract.py
RENAMED
|
File without changes
|
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools.egg-info/requires.txt
RENAMED
|
File without changes
|
{malevich-coretools-0.3.10 → malevich-coretools-0.3.11}/malevich_coretools.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|