From fee82cdf56198c0c405ba942f50bd9cd892a7d4f Mon Sep 17 00:00:00 2001 From: Brian Thorne Date: Thu, 18 May 2023 12:42:37 +1200 Subject: [PATCH] Fix/dep pinning (#678) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ๐Ÿงท Don't pin deps (again) * ๐Ÿ“ Update changelog --- CHANGELOG.md | 5 +++++ pyproject.toml | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b8d81ef..c7bad61d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## new version +## 0.18.3 + +- Allow wider range of dependency versions after changes were inadvertently dropped + from 0.18.2 release. + ## 0.18.2 - Memory and performance improvements on large files. #675 diff --git a/pyproject.toml b/pyproject.toml index 815e03f6..b8363058 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "clkhash" -version = "0.18.2" +version = "0.18.3" description = "Encoding utility to create Cryptographic Linkage Keys" license = "Apache" authors = ["Brian Thorne", "Wilko Henecka", "Guillaume Smith"] @@ -28,15 +28,15 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.8,<4.0" bitarray = "^2.6.0" -mypy_extensions = "0.4.3" +mypy_extensions = "^0.4.3" cryptography = "^40.0" tqdm = "^4.65" -pyblake2 = { version = "1.1.2", python = "<3.6" } -jsonschema = "4.16.0" +pyblake2 = { version = "^1.1", python = "<3.6" } +jsonschema = "^4.16.0" [tool.poetry.group.dev.dependencies] pytest = "^7.3" -pytest-cov = "4.0.0" +pytest-cov = "^4.0.0" nbval = "^0.10.0" requests-mock = "^1.10.0" hypothesis = "^6.75"