Skip to content

Commit a9c99a3

Browse files
authored
Minor fixes to work with MDF Connect Client v0.5.0 (#432)
1 parent 02648ff commit a9c99a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: foundry/foundry.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ def publish_dataset(
391391
dataset_doi=kwargs.get("dataset_doi", ""),
392392
related_dois=kwargs.get("related_dois", [])
393393
)
394-
self.connect_client.add_organization(self.config.organization)
394+
self.connect_client.set_organization(self.config.organization)
395395
self.connect_client.set_project_block(
396396
self.config.metadata_key, foundry_metadata)
397397

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
packages = (setuptools.find_packages(),)
66
setuptools.setup(
77
name="foundry_ml",
8-
version="0.7.4",
8+
version="0.7.5",
99
author="""Aristana Scourtas, KJ Schmidt, Isaac Darling, Aadit Ambadkar, Braeden Cullen,
1010
Imogen Foster, Ribhav Bose, Zoa Katok, Ethan Truelove, Ian Foster, Ben Blaiszik""",
1111
author_email="[email protected]",
@@ -19,7 +19,7 @@
1919
"numpy>=1.15.4",
2020
"pandas>=0.23.4",
2121
"pydantic<2.0.0",
22-
"mdf_connect_client>=0.4.0",
22+
"mdf_connect_client>=0.5.0",
2323
"h5py>=2.10.0",
2424
"json2table"
2525
],

0 commit comments

Comments
 (0)