Skip to content

Commit 3312e3e

Browse files
committed
fix polygon file name issue
1 parent 879b23d commit 3312e3e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

csep/utils/datasets.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919

2020
# relm region polygon filenames
2121
relm_testing_polygon_fname = os.path.join(
22-
_polygon_region_root, 'Polygons', 'California', 'RELMTestingPolygon.txt'
22+
_polygon_region_root, 'California', 'RELMTestingPolygon.txt'
2323
)
2424
relm_collection_polygon_fname = os.path.join(
25-
_polygon_region_root, 'Polygons', 'California', 'RELMCollectionPolygon.txt'
25+
_polygon_region_root, 'California', 'RELMCollectionPolygon.txt'
2626
)
2727

2828
italy_testing_polygon_fname = os.path.join(
29-
_polygon_region_root, 'Polygons', 'Italy', 'ItalyTestingPolygon.txt'
29+
_polygon_region_root, 'Italy', 'ItalyTestingPolygon.txt'
3030
)
3131
italy_collection_polygon_fname = os.path.join(
32-
_polygon_region_root, 'Polygons', 'Italy', 'ItalyCollectionPolygon.txt'
32+
_polygon_region_root, 'Italy', 'ItalyCollectionPolygon.txt'
3333
)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='pycsep',
9-
version='0.1.0.dev1',
9+
version='0.1.0.dev2',
1010
author='William Savran',
1111
author_email='[email protected]',
1212
packages=find_packages(),

0 commit comments

Comments
 (0)