Skip to content

Commit

Permalink
#472 increment version///os.path instead of split
Browse files Browse the repository at this point in the history
  • Loading branch information
aanersc authored and akorosov committed Jul 10, 2020
1 parent 5e22f87 commit 2954f7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nansat/mappers/mapper_sentinel1_l1.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ def _init_empty(self, manifest_data, annotation_data, filename):
self.dataset.SetMetadataItem('data_center', json.dumps(pti.get_gcmd_provider('ESA/EO')))
self.dataset.SetMetadataItem('iso_topic_category', json.dumps(pti.get_iso19115_topic_category('Oceans')))
self.dataset.SetMetadataItem('summary', platform_name + ' SAR data')
self.dataset.SetMetadataItem('entry_id', os.path.splitext(os.path.basename(filename))[0].upper())
self.dataset.SetMetadataItem('entry_id', os.path.splitext(os.path.basename(filename))[0].upper())
self.dataset.FlushCache()

def correct_geolocation_data(self):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
PLATFORMS = ["Linux", "OS X", "Windows"]
MAJOR = 1
MINOR = 2
MICRO = 6
MICRO = 7
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) # Remember to remove "dev" when releasing
REQS = [
Expand Down

0 comments on commit 2954f7f

Please sign in to comment.