From 8c5dbc1457a22eab02effce6095be01bc83c98d9 Mon Sep 17 00:00:00 2001 From: Mike Szczys Date: Mon, 18 Mar 2024 11:23:09 -0500 Subject: [PATCH 1/2] lock trio version to 0.24.0 This commit locks the trio version to 0.24.0 following some CI issue observed when using 0.25.0 ``` BaseExceptionGroup: Exceptions from Trio nursery (1 sub-exception) ``` Signed-off-by: Mike Szczys --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3e6e790..3e4b80e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ dependencies = [ "imgtool", "pyyaml", "rich", - "trio", + "trio==0.24.0", "trio-websocket", ] From edcace326bc5816e1b8288ded06cc0ecdc0ce29f Mon Sep 17 00:00:00 2001 From: Mike Szczys Date: Mon, 18 Mar 2024 13:11:43 -0500 Subject: [PATCH 2/2] release v0.6.2 Signed-off-by: Mike Szczys --- README.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8398d26..7fc93d8 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This package is not yet published in PyPI. It can be installed directly from Git the following command: ``` sh -pip install git+https://github.com/golioth/python-golioth-tools@v0.6.1 +pip install git+https://github.com/golioth/python-golioth-tools@v0.6.2 ``` Alternatively you can clone this repo and then run the following at the repo root: diff --git a/pyproject.toml b/pyproject.toml index 3e4b80e..5ab5150 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "golioth" -version = "0.6.1" +version = "0.6.2" authors = [ { name="Marcin Niestroj", email="m.niestroj@emb.dev" }, { name="Sam Friedman", email="sam@golioth.io" }