Skip to content

Commit

Permalink
[NF] Prepare for release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Glesser committed Aug 13, 2021
1 parent fa6b914 commit 6100568
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mosqito/functions/shared/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def load(is_stationary, file, calib=1, mat_signal="", mat_fs=""):
signal = calib * signal

# load the .uff file content
elif file[-3:] == "uff" or file[-3:] == "UFF":
elif file[-3:].lower() == "uff" or file[-3:].lower() == "unv":
uff_file = pyuff.UFF(file)
data = uff_file.read_sets()
data.keys()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import setuptools

# /!\ update before a release
MoSQITo_VERSION = "0.2.1"
MoSQITo_VERSION = "0.3.1"

# MoSQITo description
with open("README.md", "r", encoding="utf-8") as fh:
Expand Down

0 comments on commit 6100568

Please sign in to comment.