Skip to content

Commit

Permalink
build: loosen dependencies and pin pynacl (#254)
Browse files Browse the repository at this point in the history
* build: loosen dependencies and pin pynacl

An error might occur while installing the newest pynacl, so pin it
to the one that surely works. Loosen click and loguru dependencies

* docs: Update changelog
  • Loading branch information
renatav authored Jun 10, 2022
1 parent 9a7377e commit ccc9b49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ and this project adheres to [Semantic Versioning][semver].

### Changed

- Loosen dependencies and pin pynacl ([254])

### Fixed

[254]: https://github.com/openlawlibrary/taf/pull/254


## [0.18.0] - 05/31/2022

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,16 @@ def finalize_options(self):
"data_files": [("lib/site-packages/taf", ["./LICENSE.txt", "./README.md"])],
"zip_safe": False,
"install_requires": [
"click==7.1",
"click==7.*",
"colorama>=0.3.9",
"oll-tuf==0.11.2.dev9",
"loguru==0.4.0",
"loguru==0.4.*",
"cryptography==3.2.1",
"pyOpenSSL==20.0.1",
"pygit2==0.28.2;python_version=='3.6'",
"pygit2==1.9.*;python_version>='3.7'",
"cattrs==1.*",
"pynacl==1.4",
],
"extras_require": {
"ci": ci_require,
Expand Down

0 comments on commit ccc9b49

Please sign in to comment.