Skip to content

Commit b74c948

Browse files
authored
Merge pull request #122 from semuconsulting/RC-1.1.17
update to 1.1.17
2 parents bdda5f0 + f5d9480 commit b74c948

File tree

4 files changed

+21
-18
lines changed

4 files changed

+21
-18
lines changed

.vscode/settings.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
{
2-
"python.testing.unittestEnabled": false,
2+
// These test, build and deploy tasks are targeted at a venv
3+
// called 'pygpsclient' located in the user's home directory.
4+
// Set your workspace default VSCode Python interpreter to
5+
// this venv, i.e.
6+
// "${userHome}/pygpsclient/bin/python3" on linux/macos
7+
// "${userHome}/pygpsclient/Scripts/python" on windows
38
"python.testing.pytestEnabled": true,
49
"python.terminal.activateEnvironment": true,
510
"editor.formatOnSave": true,
611
"modulename": "${workspaceFolderBasename}",
712
"distname": "${workspaceFolderBasename}",
8-
"venv": "${env:HOME}/pygpsclient",
13+
"venv": "${userHome}/pygpsclient",
914
"python.testing.pytestArgs": [
1015
"tests"
1116
],
@@ -17,5 +22,5 @@
1722
"python.analysis.addHoverSummaries": false,
1823
"python-envs.defaultEnvManager": "ms-python.python:venv",
1924
"python-envs.pythonProjects": [],
20-
"python.defaultInterpreterPath": "/Users/steve/pygpsclient/bin/python3",
25+
"python.defaultInterpreterPath": "${userHome}/pygpsclient/bin/python3"
2126
}

.vscode/tasks.json

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=733558
3-
// for the documentation about the tasks.json format
4-
//
5-
// This VSCode development workflow is intended to work on
6-
// MacOS, Linux and Windows (with Powershell>=5.1).
7-
//
8-
// Use the Install Deploy Dependencies tasks to install the necessary
9-
// build and test packages into the system environment.
10-
//
11-
// Use the Create Venv task to create a virtual environment in the
12-
// designated directory. Select this environment using Select
13-
// Interpreter to auto-activate it via New Terminal.
14-
//
15-
// Remember to include any global Python bin (Scripts on Windows) in PATH.
2+
// These test, build and deploy tasks are targeted at a venv
3+
// called 'pygpsclient' located in the user's home directory.
4+
// Set your workspace default VSCode Python interpreter to
5+
// this venv, i.e.
6+
// "${userHome}/pygpsclient/bin/python3" on linux/macos
7+
// "${userHome}/pygpsclient/Scripts/python" on windows
168
"version": "2.0.0",
179
"tasks": [
1810
{

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# pygnssutils
22

3+
### RELEASE 1.1.17
4+
5+
CHANGES:
6+
7+
1. Min pyubx2 ver updated to 1.2.58 - incorporates several minor fixes and additional support for proprietary Quectel NMEA message definitions.
8+
39
### RELEASE 1.1.16
410

511
FIXES:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies = [
3939
"paho-mqtt>=2.1.0",
4040
"pyserial>=3.5",
4141
"pyspartn>=1.0.7",
42-
"pyubx2>=1.2.57",
42+
"pyubx2>=1.2.58",
4343
"pysbf2>=1.0.0",
4444
"pyubxutils>=1.0.3",
4545
]

0 commit comments

Comments
 (0)