Skip to content

Commit

Permalink
fix polygon file name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wsavran committed Sep 8, 2020
1 parent 879b23d commit 3312e3e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions csep/utils/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='pycsep',
version='0.1.0.dev1',
version='0.1.0.dev2',
author='William Savran',
author_email='[email protected]',
packages=find_packages(),
Expand Down

0 comments on commit 3312e3e

Please sign in to comment.