Skip to content

Commit cfe5254

Browse files
authored
Merge pull request #120 from semuconsulting/RC-1.1.16
Rc 1.1.16
2 parents a712b21 + fce2ba8 commit cfe5254

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

RELEASE_NOTES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
# pygnssutils
22

3+
### RELEASE 1.1.16
4+
5+
FIXES:
6+
7+
1. Fix gnssntripclient inappropriate critical error for socket.timeout in Python<3.9 Fixes #118
8+
9+
CHANGES:
10+
11+
1. Min versions of pyubx2 and pysbf2 updated.
12+
313
### RELEASE 1.1.15
414

515
FIXES:
616

7-
1. gnssstreamer Fix allow_reuse_addr setting #115
17+
1. gnssstreamer Fix allow_reuse_addr setting Fixes #115
818

919
### RELEASE 1.1.14
1020

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ dependencies = [
3838
"paho-mqtt>=2.1.0",
3939
"pyserial>=3.5",
4040
"pyspartn>=1.0.7",
41-
"pyubx2>=1.2.53",
42-
"pysbf2>=0.2.0",
41+
"pyubx2>=1.2.55",
42+
"pysbf2>=1.0.0",
4343
"pyubxutils>=1.0.3",
4444
]
4545

src/pygnssutils/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
:license: BSD 3-Clause
99
"""
1010

11-
__version__ = "1.1.15"
11+
__version__ = "1.1.16"

src/pygnssutils/gnssntripclient.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ def _read_thread(
262262
ConnectionResetError,
263263
OverflowError,
264264
socket.gaierror,
265+
socket.timeout, # subclass of OSError in Python<=3.9
265266
TimeoutError,
266267
) as err:
267268
errm = str(repr(err))

0 commit comments

Comments
 (0)