From 3312e3e58b8cd13b107d7266839a072b81b091d8 Mon Sep 17 00:00:00 2001 From: William Savran Date: Tue, 8 Sep 2020 14:33:56 -0700 Subject: [PATCH] fix polygon file name issue --- csep/utils/datasets.py | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/csep/utils/datasets.py b/csep/utils/datasets.py index 20d36b26..99a9e84b 100644 --- a/csep/utils/datasets.py +++ b/csep/utils/datasets.py @@ -19,15 +19,15 @@ # relm region polygon filenames relm_testing_polygon_fname = os.path.join( - _polygon_region_root, 'Polygons', 'California', 'RELMTestingPolygon.txt' + _polygon_region_root, 'California', 'RELMTestingPolygon.txt' ) relm_collection_polygon_fname = os.path.join( - _polygon_region_root, 'Polygons', 'California', 'RELMCollectionPolygon.txt' + _polygon_region_root, 'California', 'RELMCollectionPolygon.txt' ) italy_testing_polygon_fname = os.path.join( - _polygon_region_root, 'Polygons', 'Italy', 'ItalyTestingPolygon.txt' + _polygon_region_root, 'Italy', 'ItalyTestingPolygon.txt' ) italy_collection_polygon_fname = os.path.join( - _polygon_region_root, 'Polygons', 'Italy', 'ItalyCollectionPolygon.txt' + _polygon_region_root, 'Italy', 'ItalyCollectionPolygon.txt' ) \ No newline at end of file diff --git a/setup.py b/setup.py index d18f1f96..4c5673a0 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='pycsep', - version='0.1.0.dev1', + version='0.1.0.dev2', author='William Savran', author_email='wsavran@usc.edu', packages=find_packages(),