diff --git a/docs/source/UserGuide.rst b/docs/source/UserGuide.rst index f9054ec..eab0947 100644 --- a/docs/source/UserGuide.rst +++ b/docs/source/UserGuide.rst @@ -84,10 +84,6 @@ portal can accessed at - s3_bucket: As default, data will be uploaded to a default bucket in S3 managed by AIND. Please reach out to the Scientific Computing department if you wish to upload to a different bucket. - - metadata_dir_force: We will automatically pull subject and - procedures data for a mouse. By setting this ``True``, we will - overwrite any data in the ``metadata_dir`` folder with data - acquired automatically from our service - force_cloud_sync: We run a check to verify whether there is already a data asset with this name saved in our S3 bucket. If this field is set to ``True``, we will sync the data to the diff --git a/pyproject.toml b/pyproject.toml index 6ec69a1..e6d5aea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ dependencies = [ 'pydantic>=2.7,<2.9', 'pydantic-settings>=2.0', 'aind-data-schema>=1.0.0,<2.0', - 'aind-data-transfer-models==0.14.1' + 'aind-data-transfer-models==0.15.0' ] [project.optional-dependencies] diff --git a/tests/test_csv_handler.py b/tests/test_csv_handler.py index f95b9f1..1f99794 100644 --- a/tests/test_csv_handler.py +++ b/tests/test_csv_handler.py @@ -49,7 +49,7 @@ def test_map_csv_row_to_job(self): subject_id="123454", acq_datetime=datetime(2020, 10, 10, 14, 10, 10), metadata_dir=None, - metadata_dir_force=False, + metadata_dir_force=None, force_cloud_sync=False, ), BasicUploadJobConfigs( @@ -76,7 +76,7 @@ def test_map_csv_row_to_job(self): subject_id="123456", acq_datetime=datetime(2020, 10, 13, 13, 10, 10), metadata_dir=None, - metadata_dir_force=False, + metadata_dir_force=None, force_cloud_sync=False, codeocean_configs=CodeOceanPipelineMonitorConfigs( job_type="custom" @@ -99,7 +99,7 @@ def test_map_csv_row_to_job(self): subject_id="123456", acq_datetime=datetime(2020, 10, 13, 13, 10, 10), metadata_dir=None, - metadata_dir_force=False, + metadata_dir_force=None, force_cloud_sync=False, ), ]