Skip to content

Commit

Permalink
Update dependencies: add cryptography, remove pycryptodomex
Browse files Browse the repository at this point in the history
  • Loading branch information
hakavlad committed Jan 18, 2025
1 parent 789b866 commit 562d7fb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ Enabling debug messages additionally shows:

## Requirements

- Python >= 3.9
- [PyCryptodomex](https://pypi.org/project/pycryptodomex/) >= 3.6.2 (provides `ChaCha20`)
- Python >= 3.9.2
- [cryptography](https://pypi.org/project/cryptography/) >= 2.1 (provides `ChaCha20`)
- [PyNaCl](https://pypi.org/project/PyNaCl/) >= 1.2.0 (provides `Argon2` and `BLAKE2`)

## Installation
Expand Down
2 changes: 1 addition & 1 deletion deb/DEBIAN/control
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: tird
Version: 0.17.0
Section: utils
Architecture: all
Depends: python3 (>= 3.9.0), python3-nacl (>= 1.2.0), python3-pycryptodome (>= 3.6.2)
Depends: python3 (>= 3.9.2), python3-cryptography (>= 2.1), python3-nacl (>= 1.2.0)
Maintainer: Alexey Avramov <[email protected]>
Priority: optional
Homepage: https://github.com/hakavlad/tird
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ classifiers = [
"Typing :: Typed",
]
dependencies = [
"pycryptodomex>=3.6.2",
"cryptography>=2.1",
"pynacl>=1.2.0",
]
requires-python = ">=3.9"
requires-python = ">=3.9.2"

[project.urls]
"Bug Tracker" = "https://github.com/hakavlad/tird/issues"
Expand Down

0 comments on commit 562d7fb

Please sign in to comment.