From a94bb894887944ab38e95afa07965a4af9cfe983 Mon Sep 17 00:00:00 2001 From: Vladimir Kopso Date: Wed, 19 Jan 2022 09:35:57 +0100 Subject: [PATCH 1/3] fix for python 3.10 is only available in websockets-10.0 and newer --- CHANGELOG.md | 8 +++++++- requirements.txt | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c140123..1047c6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.17] - 2022-1-19 + +### Added + +- bump `websockets` dependency to 10.1 to get the fix for an issue it has with Python 3.10 + ## [0.0.16] - 2022-1-18 ### Added -- bump `websockets` dependency to 9.1 to get the fix for an issue it has with Python 3.10 +- bump `websockets` dependency to 9.1 ## [0.0.15] - 2021-12-23 diff --git a/requirements.txt b/requirements.txt index 1c2fe7f..9ecc266 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -websockets==9.1 +websockets==10.1 From b0683927617fe0e44854e4f33735db9c2345feeb Mon Sep 17 00:00:00 2001 From: Vladimir Kopso Date: Wed, 19 Jan 2022 11:44:49 +0100 Subject: [PATCH 2/3] weaken the version pin rule so it's not so annoying to customers --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 9ecc266..d156e74 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -websockets==10.1 +websockets>=10 From 1a53c6ac5fcf0c7ede464d8044d025034cd0cfd0 Mon Sep 17 00:00:00 2001 From: Vladimir Kopso Date: Wed, 19 Jan 2022 11:52:18 +0100 Subject: [PATCH 3/3] bump --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index e3b86dd..cd23180 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.16 +0.0.17