Skip to content

Commit

Permalink
Fix/dep pinning (#678)
Browse files Browse the repository at this point in the history
* 🧷 Don't pin deps (again)

* 📝 Update changelog
  • Loading branch information
hardbyte committed May 18, 2023
1 parent 328f4d3 commit fee82cd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit fee82cd

Please sign in to comment.