From 06665bee4f51c2ae9b87410ed8cb9051c332345e Mon Sep 17 00:00:00 2001 From: Ed Chalstrey Date: Thu, 31 Mar 2022 12:05:43 +0100 Subject: [PATCH] Increment version to 0.2.3 (testing automated PyPI release) (#212) * increment version * remove unnecessary failing zenodo test relying on url --- setup.py | 2 +- tests/test_reader.py | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 9c89e4ab..8ef0ef78 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name="scivision", - version="0.1.3", + version="0.2.3", description="scivision", author="The Alan Turing Institute", author_email="scivision@turing.ac.uk", diff --git a/tests/test_reader.py b/tests/test_reader.py index 4e047f9c..db769dfa 100644 --- a/tests/test_reader.py +++ b/tests/test_reader.py @@ -55,13 +55,6 @@ def test_load_dataset_local_zip(): assert type(cat.test_images().to_dask()) == xarray.core.dataarray.DataArray -def test_load_dataset_remote_zip(): - """Test that an intake catalog is generated from a remote yml (zenodo) which loads from a zip file and can be converted to xarray.""" - cat = load_dataset('tests/test_dataset_remote_zip_scivision.yml') - assert type(cat) == intake.catalog.local.YAMLFileCatalog - assert type(cat.plankton().to_dask()) == xarray.core.dataarray.DataArray - - def test_get_model_configs(): """Test that a config with multiple models is split into separate configs.""" path = 'tests/test_multiple_models_scivision.yml'