dyff-schema 0.36.1__py3-none-any.whl → 0.36.2__py3-none-any.whl
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 dyff-schema might be problematic. Click here for more details.
- dyff/schema/_version.py +2 -2
- dyff/schema/v0/r1/commands.py +17 -12
- {dyff_schema-0.36.1.dist-info → dyff_schema-0.36.2.dist-info}/METADATA +1 -1
- {dyff_schema-0.36.1.dist-info → dyff_schema-0.36.2.dist-info}/RECORD +8 -8
- {dyff_schema-0.36.1.dist-info → dyff_schema-0.36.2.dist-info}/WHEEL +0 -0
- {dyff_schema-0.36.1.dist-info → dyff_schema-0.36.2.dist-info}/licenses/LICENSE +0 -0
- {dyff_schema-0.36.1.dist-info → dyff_schema-0.36.2.dist-info}/licenses/NOTICE +0 -0
- {dyff_schema-0.36.1.dist-info → dyff_schema-0.36.2.dist-info}/top_level.txt +0 -0
dyff/schema/_version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = version = "0.36.
|
|
2
|
-
__version_tuple__ = version_tuple = (0, 36,
|
|
1
|
+
__version__ = version = "0.36.2"
|
|
2
|
+
__version_tuple__ = version_tuple = (0, 36, 2)
|
dyff/schema/v0/r1/commands.py
CHANGED
|
@@ -183,7 +183,7 @@ class EditChallengeContent(Command):
|
|
|
183
183
|
# ----------------------------------------------------------------------------
|
|
184
184
|
|
|
185
185
|
|
|
186
|
-
class
|
|
186
|
+
class ChallengeTaskRulesExecutionEnvironmentPatch(JsonMergePatchSemantics):
|
|
187
187
|
"""Same properties as ChallengeTaskExecutionEnvironmentChocies, but assigning None
|
|
188
188
|
to a field is interpreted as a command to delete that field.
|
|
189
189
|
|
|
@@ -198,7 +198,7 @@ class EditChallengeTaskRulesExecutionEnvironmentChoices(JsonMergePatchSemantics)
|
|
|
198
198
|
)
|
|
199
199
|
|
|
200
200
|
|
|
201
|
-
class
|
|
201
|
+
class ChallengeTaskRulesSchedulePatch(JsonMergePatchSemantics):
|
|
202
202
|
"""Same properties as ChallengeTaskSchedule, but assigning None to a field is
|
|
203
203
|
interpreted as a command to delete that field.
|
|
204
204
|
|
|
@@ -231,26 +231,27 @@ class EditChallengeTaskRulesSchedule(JsonMergePatchSemantics):
|
|
|
231
231
|
)
|
|
232
232
|
|
|
233
233
|
|
|
234
|
-
class
|
|
234
|
+
class ChallengeTaskRulesPatch(DyffSchemaBaseModel):
|
|
235
235
|
"""Same properties as ChallengeTaskRules, but assigning None to a field is
|
|
236
236
|
interpreted as a command to delete that field.
|
|
237
237
|
|
|
238
238
|
Fields that are not assigned explicitly remain unchanged.
|
|
239
239
|
"""
|
|
240
240
|
|
|
241
|
-
executionEnvironment: Optional[
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
241
|
+
executionEnvironment: Optional[ChallengeTaskRulesExecutionEnvironmentPatch] = (
|
|
242
|
+
pydantic.Field(
|
|
243
|
+
default=None,
|
|
244
|
+
description="Patch for the .rules.executionEnvironments field.",
|
|
245
|
+
)
|
|
245
246
|
)
|
|
246
|
-
schedule: Optional[
|
|
247
|
+
schedule: Optional[ChallengeTaskRulesSchedulePatch] = pydantic.Field(
|
|
247
248
|
default=None, description="Patch for the .rules.schedule field."
|
|
248
249
|
)
|
|
249
250
|
|
|
250
251
|
@field_serializer("executionEnvironment")
|
|
251
252
|
def _serialize_executionEnvironment(
|
|
252
253
|
self,
|
|
253
|
-
executionEnvironment:
|
|
254
|
+
executionEnvironment: ChallengeTaskRulesExecutionEnvironmentPatch,
|
|
254
255
|
_info,
|
|
255
256
|
):
|
|
256
257
|
return executionEnvironment.model_dump(mode=_info.mode)
|
|
@@ -258,7 +259,7 @@ class EditChallengeTaskRulesPatch(DyffSchemaBaseModel):
|
|
|
258
259
|
@field_serializer("schedule")
|
|
259
260
|
def _serialize_schedule(
|
|
260
261
|
self,
|
|
261
|
-
schedule:
|
|
262
|
+
schedule: ChallengeTaskRulesSchedulePatch,
|
|
262
263
|
_info,
|
|
263
264
|
):
|
|
264
265
|
return schedule.model_dump(mode=_info.mode)
|
|
@@ -267,7 +268,7 @@ class EditChallengeTaskRulesPatch(DyffSchemaBaseModel):
|
|
|
267
268
|
class EditChallengeTaskRulesAttributes(DyffSchemaBaseModel):
|
|
268
269
|
"""Attributes for the EditChallengeTaskRules command."""
|
|
269
270
|
|
|
270
|
-
rules:
|
|
271
|
+
rules: ChallengeTaskRulesPatch = pydantic.Field(
|
|
271
272
|
description="Edits to make to the task rules."
|
|
272
273
|
)
|
|
273
274
|
|
|
@@ -532,6 +533,11 @@ DyffCommandType = Union[
|
|
|
532
533
|
|
|
533
534
|
|
|
534
535
|
__all__ = [
|
|
536
|
+
"ChallengeContentPagePatch",
|
|
537
|
+
"ChallengeContentPatch",
|
|
538
|
+
"ChallengeTaskRulesExecutionEnvironmentPatch",
|
|
539
|
+
"ChallengeTaskRulesSchedulePatch",
|
|
540
|
+
"ChallengeTaskRulesPatch",
|
|
535
541
|
"Command",
|
|
536
542
|
"CreateChallengeTask",
|
|
537
543
|
"CreateChallengeTaskAttributes",
|
|
@@ -541,7 +547,6 @@ __all__ = [
|
|
|
541
547
|
"EditChallengeContent",
|
|
542
548
|
"EditChallengeContentAttributes",
|
|
543
549
|
"EditChallengeContentData",
|
|
544
|
-
"EditChallengeContentPagePatch",
|
|
545
550
|
"EditChallengeContentPatch",
|
|
546
551
|
"EditEntityDocumentation",
|
|
547
552
|
"EditEntityDocumentationAttributes",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
dyff/schema/__init__.py,sha256=w7OWDFuyGKd6xt_yllNtKzHahPgywrfU4Ue02psYaMA,2244
|
|
2
|
-
dyff/schema/_version.py,sha256=
|
|
2
|
+
dyff/schema/_version.py,sha256=snNKGQT5uES8q2SGL6BazwaBF7Y5ZUGT85_MDVZkL5I,80
|
|
3
3
|
dyff/schema/adapters.py,sha256=YMTHv_2VlLGFp-Kqwa6H51hjffHmk8gXjZilHysIF5Q,123
|
|
4
4
|
dyff/schema/annotations.py,sha256=nE6Jk1PLqlShj8uqjE_EzZC9zYnTDW5AVtQcjysiK8M,10018
|
|
5
5
|
dyff/schema/base.py,sha256=jvaNtsSZyFfsdUZTcY_U-yfLY5_GyrMxSXhON2R9XR0,119
|
|
@@ -27,7 +27,7 @@ dyff/schema/v0/__init__.py,sha256=L5y8UhRnojerPYHumsxQJRcHCNz8Hj9NM8b47mewMNs,92
|
|
|
27
27
|
dyff/schema/v0/r1/__init__.py,sha256=L5y8UhRnojerPYHumsxQJRcHCNz8Hj9NM8b47mewMNs,92
|
|
28
28
|
dyff/schema/v0/r1/adapters.py,sha256=hpwCSW8lkMkUKCLe0zaMUDu-VS_caSxJvPsECEi_XRA,33069
|
|
29
29
|
dyff/schema/v0/r1/base.py,sha256=1VJXVLKldOq3aH2HdVgxXXk4DJTZEIiaTa4GzMKzziU,20228
|
|
30
|
-
dyff/schema/v0/r1/commands.py,sha256=
|
|
30
|
+
dyff/schema/v0/r1/commands.py,sha256=ZV9T-QkIvnMeqmdYl6OXPNYou1HlMDagxYoTkozHJAI,17995
|
|
31
31
|
dyff/schema/v0/r1/oci.py,sha256=YjHDVBJ2IIxqijll70OK6pM-qT6pq8tvU7D3YB9vGM0,6700
|
|
32
32
|
dyff/schema/v0/r1/platform.py,sha256=UVDc4loKNQIw0J6PD_aDSGhxQLdorwz8lXwikhf-ORo,102071
|
|
33
33
|
dyff/schema/v0/r1/requests.py,sha256=v9t8wg6ZYGCPp05HFtOnw093nCD9ED_lLOK__4Z2d4s,18584
|
|
@@ -43,9 +43,9 @@ dyff/schema/v0/r1/dataset/text.py,sha256=MYG5seGODDryRSCy-g0Unh5dD0HCytmZ3FeElC-
|
|
|
43
43
|
dyff/schema/v0/r1/dataset/vision.py,sha256=tJFF4dkhHX0UXTj1sPW-G22xTSI40gbYO465FuvmvAU,443
|
|
44
44
|
dyff/schema/v0/r1/io/__init__.py,sha256=L5y8UhRnojerPYHumsxQJRcHCNz8Hj9NM8b47mewMNs,92
|
|
45
45
|
dyff/schema/v0/r1/io/vllm.py,sha256=vWyLg-susbg0JDfv6VExBpgFdU2GHP2a14ChOdbckvs,5321
|
|
46
|
-
dyff_schema-0.36.
|
|
47
|
-
dyff_schema-0.36.
|
|
48
|
-
dyff_schema-0.36.
|
|
49
|
-
dyff_schema-0.36.
|
|
50
|
-
dyff_schema-0.36.
|
|
51
|
-
dyff_schema-0.36.
|
|
46
|
+
dyff_schema-0.36.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
47
|
+
dyff_schema-0.36.2.dist-info/licenses/NOTICE,sha256=YONACu0s_Ui6jNi-wtEsVQbTU1JIkh8wvLH6d1-Ni_w,43
|
|
48
|
+
dyff_schema-0.36.2.dist-info/METADATA,sha256=XulGMwkAYxc1LstxGWwUggtx19BI-IyPlrJwIz0tD-w,3734
|
|
49
|
+
dyff_schema-0.36.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
50
|
+
dyff_schema-0.36.2.dist-info/top_level.txt,sha256=9e3VVdeX73t_sUJOPQPCcGtYO1JhoErhHIi3WoWGcFI,5
|
|
51
|
+
dyff_schema-0.36.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|