File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed
Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 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
515FIXES:
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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 88:license: BSD 3-Clause
99"""
1010
11- __version__ = "1.1.15 "
11+ __version__ = "1.1.16 "
Original file line number Diff line number Diff 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 ))
You can’t perform that action at this time.
0 commit comments