Skip to content

Commit 5d5e186

Browse files
committedMar 26, 2023
update dependencies
1 parent 4f53fb0 commit 5d5e186

File tree

5 files changed

+915
-406
lines changed

5 files changed

+915
-406
lines changed
 

‎.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
test:
1616
strategy:
1717
matrix:
18-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
18+
python-version: ['3.8', '3.9', '3.10', '3.11']
1919
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
2020
# do not cancel any jobs when a single job fails
2121
fail-fast: false

‎paseto/protocol/version4.py

-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ def verify(
181181

182182

183183
def _split_key(key: bytes, nonce: bytes) -> Tuple[bytes, bytes, bytes]:
184-
185184
hashed: bytes = hashlib.blake2b(
186185
INFO_ENCRYPTION + nonce, key=key, digest_size=56
187186
).digest()

‎poetry.lock

+379-347
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ classifiers = [
2020
]
2121

2222
[tool.poetry.dependencies]
23-
python = "^3.7.2"
23+
python = "^3.8"
2424
pysodium = "^0.7.12"
2525

2626
[tool.poetry.dev-dependencies]
27-
black = "^22.12"
27+
black = "^23.1"
2828
codespell = "^2.2.2"
2929
coverage = "^6"
3030
coveralls = "^3.3"
3131
cython = "^0.29.32"
32-
isort = "^5.11"
33-
mypy = "^0.991"
32+
isort = "^5.12"
33+
mypy = "^1.1"
3434
pylama = "^8.3"
3535
pylint = "^2.15"
3636
pynacl = "^1.5"

‎requirements-dev.txt

+531-53
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.