dagster-wandb 0.25.5__py3-none-any.whl → 0.25.7__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 dagster-wandb might be problematic. Click here for more details.
- dagster_wandb/__init__.py +3 -3
- dagster_wandb/utils/pickling.py +9 -9
- dagster_wandb/version.py +1 -1
- {dagster_wandb-0.25.5.dist-info → dagster_wandb-0.25.7.dist-info}/METADATA +2 -2
- {dagster_wandb-0.25.5.dist-info → dagster_wandb-0.25.7.dist-info}/RECORD +8 -8
- {dagster_wandb-0.25.5.dist-info → dagster_wandb-0.25.7.dist-info}/LICENSE +0 -0
- {dagster_wandb-0.25.5.dist-info → dagster_wandb-0.25.7.dist-info}/WHEEL +0 -0
- {dagster_wandb-0.25.5.dist-info → dagster_wandb-0.25.7.dist-info}/top_level.txt +0 -0
dagster_wandb/__init__.py
CHANGED
|
@@ -9,11 +9,11 @@ from dagster_wandb.version import __version__
|
|
|
9
9
|
DagsterLibraryRegistry.register("dagster-wandb", __version__)
|
|
10
10
|
|
|
11
11
|
__all__ = [
|
|
12
|
-
"WandbArtifactsIOManagerError",
|
|
13
12
|
"SerializationModule",
|
|
14
|
-
"wandb_resource",
|
|
15
|
-
"wandb_artifacts_io_manager",
|
|
16
13
|
"WandbArtifactConfiguration",
|
|
14
|
+
"WandbArtifactsIOManagerError",
|
|
17
15
|
"run_launch_agent",
|
|
18
16
|
"run_launch_job",
|
|
17
|
+
"wandb_artifacts_io_manager",
|
|
18
|
+
"wandb_resource",
|
|
19
19
|
]
|
dagster_wandb/utils/pickling.py
CHANGED
|
@@ -55,7 +55,7 @@ def pickle_artifact_content(
|
|
|
55
55
|
**artifact.metadata,
|
|
56
56
|
**{
|
|
57
57
|
"source_serialization_module": "dill",
|
|
58
|
-
"source_dill_version_used": dill.__version__,
|
|
58
|
+
"source_dill_version_used": dill.__version__, # pyright: ignore[reportOptionalMemberAccess]
|
|
59
59
|
"source_pickle_protocol_used": serialization_module_parameters_with_protocol[
|
|
60
60
|
"protocol"
|
|
61
61
|
],
|
|
@@ -63,7 +63,7 @@ def pickle_artifact_content(
|
|
|
63
63
|
}
|
|
64
64
|
with artifact.new_file(DILL_FILENAME, "wb") as file:
|
|
65
65
|
try:
|
|
66
|
-
dill.dump(
|
|
66
|
+
dill.dump( # pyright: ignore[reportOptionalMemberAccess]
|
|
67
67
|
obj,
|
|
68
68
|
file,
|
|
69
69
|
**serialization_module_parameters_with_protocol,
|
|
@@ -88,7 +88,7 @@ def pickle_artifact_content(
|
|
|
88
88
|
**artifact.metadata,
|
|
89
89
|
**{
|
|
90
90
|
"source_serialization_module": "cloudpickle",
|
|
91
|
-
"source_cloudpickle_version_used": cloudpickle.__version__,
|
|
91
|
+
"source_cloudpickle_version_used": cloudpickle.__version__, # pyright: ignore[reportOptionalMemberAccess]
|
|
92
92
|
"source_pickle_protocol_used": serialization_module_parameters_with_protocol[
|
|
93
93
|
"protocol"
|
|
94
94
|
],
|
|
@@ -96,7 +96,7 @@ def pickle_artifact_content(
|
|
|
96
96
|
}
|
|
97
97
|
with artifact.new_file(CLOUDPICKLE_FILENAME, "wb") as file:
|
|
98
98
|
try:
|
|
99
|
-
cloudpickle.dump(
|
|
99
|
+
cloudpickle.dump( # pyright: ignore[reportOptionalMemberAccess]
|
|
100
100
|
obj,
|
|
101
101
|
file,
|
|
102
102
|
**serialization_module_parameters_with_protocol,
|
|
@@ -120,7 +120,7 @@ def pickle_artifact_content(
|
|
|
120
120
|
**artifact.metadata,
|
|
121
121
|
**{
|
|
122
122
|
"source_serialization_module": "joblib",
|
|
123
|
-
"source_joblib_version_used": joblib.__version__,
|
|
123
|
+
"source_joblib_version_used": joblib.__version__, # pyright: ignore[reportOptionalMemberAccess]
|
|
124
124
|
"source_pickle_protocol_used": serialization_module_parameters_with_protocol[
|
|
125
125
|
"protocol"
|
|
126
126
|
],
|
|
@@ -128,7 +128,7 @@ def pickle_artifact_content(
|
|
|
128
128
|
}
|
|
129
129
|
with artifact.new_file(JOBLIB_FILENAME, "wb") as file:
|
|
130
130
|
try:
|
|
131
|
-
joblib.dump(
|
|
131
|
+
joblib.dump( # pyright: ignore[reportOptionalMemberAccess]
|
|
132
132
|
obj,
|
|
133
133
|
file,
|
|
134
134
|
**serialization_module_parameters_with_protocol,
|
|
@@ -182,7 +182,7 @@ def unpickle_artifact_content(artifact_dir):
|
|
|
182
182
|
" was not found. Please, make sure it's installed."
|
|
183
183
|
)
|
|
184
184
|
with open(f"{artifact_dir}/{DILL_FILENAME}", "rb") as file:
|
|
185
|
-
input_value = dill.load(file)
|
|
185
|
+
input_value = dill.load(file) # pyright: ignore[reportOptionalMemberAccess]
|
|
186
186
|
return input_value
|
|
187
187
|
elif os.path.exists(f"{artifact_dir}/{CLOUDPICKLE_FILENAME}"):
|
|
188
188
|
if not has_cloudpickle:
|
|
@@ -191,7 +191,7 @@ def unpickle_artifact_content(artifact_dir):
|
|
|
191
191
|
" module was not found. Please, make sure it's installed."
|
|
192
192
|
)
|
|
193
193
|
with open(f"{artifact_dir}/{CLOUDPICKLE_FILENAME}", "rb") as file:
|
|
194
|
-
input_value = cloudpickle.load(file)
|
|
194
|
+
input_value = cloudpickle.load(file) # pyright: ignore[reportOptionalMemberAccess]
|
|
195
195
|
return input_value
|
|
196
196
|
elif os.path.exists(f"{artifact_dir}/{JOBLIB_FILENAME}"):
|
|
197
197
|
if not has_joblib:
|
|
@@ -200,7 +200,7 @@ def unpickle_artifact_content(artifact_dir):
|
|
|
200
200
|
" was not found. Please, make sure it's installed."
|
|
201
201
|
)
|
|
202
202
|
with open(f"{artifact_dir}/{JOBLIB_FILENAME}", "rb") as file:
|
|
203
|
-
input_value = joblib.load(file)
|
|
203
|
+
input_value = joblib.load(file) # pyright: ignore[reportOptionalMemberAccess]
|
|
204
204
|
return input_value
|
|
205
205
|
elif os.path.exists(f"{artifact_dir}/{PICKLE_FILENAME}"):
|
|
206
206
|
with open(f"{artifact_dir}/{PICKLE_FILENAME}", "rb") as file:
|
dagster_wandb/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.25.
|
|
1
|
+
__version__ = "0.25.7"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dagster-wandb
|
|
3
|
-
Version: 0.25.
|
|
3
|
+
Version: 0.25.7
|
|
4
4
|
Summary: Package for wandb Dagster components.
|
|
5
5
|
Home-page: https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-wandb
|
|
6
6
|
Author: Dagster Labs
|
|
@@ -13,7 +13,7 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
14
|
Requires-Python: >=3.9,<3.13
|
|
15
15
|
License-File: LICENSE
|
|
16
|
-
Requires-Dist: dagster ==1.9.
|
|
16
|
+
Requires-Dist: dagster ==1.9.7
|
|
17
17
|
Requires-Dist: wandb <1.0,>=0.15.11
|
|
18
18
|
Provides-Extra: dev
|
|
19
19
|
Requires-Dist: cloudpickle ; extra == 'dev'
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
dagster_wandb/__init__.py,sha256=
|
|
1
|
+
dagster_wandb/__init__.py,sha256=PMLVZ9Gniz3S6RPNLbNg0ljZSHvAH9gjQPF5LbiVh8Y,678
|
|
2
2
|
dagster_wandb/io_manager.py,sha256=FbzHBlhTN3r0gpcN-hDuZdMWvfSWYF7Y6nvZOyoPMu0,34107
|
|
3
3
|
dagster_wandb/py.typed,sha256=mDShSrm8qg9qjacQc2F-rI8ATllqP6EdgHuEYxuCXZ0,7
|
|
4
4
|
dagster_wandb/resources.py,sha256=uWqNCxoiQaM6NeavJxKul8Qu_pkSmKb-bqbEDOmghd8,2272
|
|
5
5
|
dagster_wandb/types.py,sha256=nB61MN1Lsny91Ahli16WPC628jTlC0V95tI6DsXW3y0,774
|
|
6
|
-
dagster_wandb/version.py,sha256=
|
|
6
|
+
dagster_wandb/version.py,sha256=C9UDSxAgbu6RAIQvHS6_OpZMJWGe74K5VElCoECo0YA,23
|
|
7
7
|
dagster_wandb/launch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
dagster_wandb/launch/configs.py,sha256=czir6F-iaGf7j9ur-I9Mi-MwpWkf--O-xx4SJK3Iehk,4421
|
|
9
9
|
dagster_wandb/launch/ops.py,sha256=mgJaPrC91jaUVRiXmMtB1Xzk5MbWxEV1gZdUH1dMt-g,5173
|
|
10
10
|
dagster_wandb/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
dagster_wandb/utils/errors.py,sha256=Ow4xy8n1pZp6_RC_WzxQVrD9FCEtc_mnF6k7q8jMT2Y,2744
|
|
12
|
-
dagster_wandb/utils/pickling.py,sha256=
|
|
13
|
-
dagster_wandb-0.25.
|
|
14
|
-
dagster_wandb-0.25.
|
|
15
|
-
dagster_wandb-0.25.
|
|
16
|
-
dagster_wandb-0.25.
|
|
17
|
-
dagster_wandb-0.25.
|
|
12
|
+
dagster_wandb/utils/pickling.py,sha256=8PyzL6l8nnTLOtfKukDSyceoX1888vMLbPIvdUseFME,8332
|
|
13
|
+
dagster_wandb-0.25.7.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
14
|
+
dagster_wandb-0.25.7.dist-info/METADATA,sha256=gmKRDSEjqWmUzod3Qw62vwm9uahwDNsz50-VhMuS-eo,842
|
|
15
|
+
dagster_wandb-0.25.7.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
16
|
+
dagster_wandb-0.25.7.dist-info/top_level.txt,sha256=eBR6kNspYqHANL4Hy1aXRhq-pYZmPhFg_xKui2AS8cE,14
|
|
17
|
+
dagster_wandb-0.25.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|