Skip to content

Commit 6100568

Browse files
author
Martin Glesser
committed
[NF] Prepare for release 0.3.1
1 parent fa6b914 commit 6100568

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mosqito/functions/shared/load.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def load(is_stationary, file, calib=1, mat_signal="", mat_fs=""):
5454
signal = calib * signal
5555

5656
# load the .uff file content
57-
elif file[-3:] == "uff" or file[-3:] == "UFF":
57+
elif file[-3:].lower() == "uff" or file[-3:].lower() == "unv":
5858
uff_file = pyuff.UFF(file)
5959
data = uff_file.read_sets()
6060
data.keys()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import setuptools
22

33
# /!\ update before a release
4-
MoSQITo_VERSION = "0.2.1"
4+
MoSQITo_VERSION = "0.3.1"
55

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

0 commit comments

Comments
 (0)