Skip to content

Commit

Permalink
requirements: Update reqs
Browse files Browse the repository at this point in the history
Also: re-blacken test_cipher
  • Loading branch information
Synss committed Mar 23, 2022
1 parent 9e228eb commit 73f7614
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 39 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is autogenerated by pip-compile
# This file is autogenerated by pip-compile with python 3.9
# To update, run:
#
# pip-compile --no-annotate setup.py
#
certifi==2021.5.30
certifi==2021.10.8
19 changes: 9 additions & 10 deletions requirements/build.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
#
# This file is autogenerated by pip-compile
# This file is autogenerated by pip-compile with python 3.9
# To update, run:
#
# pip-compile --no-annotate requirements/build.in
#
click==8.0.1
cython==0.29.24
delocate==0.9.1 ; sys_platform == "darwin"
pep517==0.11.0
pip-tools==6.3.0
six==1.16.0
tomli==1.2.1
typing-extensions==3.10.0.2
wheel==0.37.0
click==8.0.4
cython==0.29.28
delocate==0.10.2 ; sys_platform == "darwin"
pep517==0.12.0
pip-tools==6.5.1
tomli==2.0.1
typing-extensions==4.1.1
wheel==0.37.1

# The following packages are considered to be unsafe in a requirements file:
# pip
Expand Down
51 changes: 25 additions & 26 deletions requirements/tests.txt
Original file line number Diff line number Diff line change
@@ -1,44 +1,43 @@
#
# This file is autogenerated by pip-compile
# This file is autogenerated by pip-compile with python 3.9
# To update, run:
#
# pip-compile --no-annotate ./requirements/test.in
# pip-compile --no-annotate requirements/tests.in
#
astroid==2.8.0
attrs==21.2.0
black==21.9b0
astroid==2.9.3
attrs==21.4.0
black==22.1.0
bleach==4.1.0
click==8.0.1
coverage==5.5
cython==0.29.24
docutils==0.17.1
click==8.0.4
coverage[toml]==6.3.2
cython==0.29.28
docutils==0.18.1
iniconfig==1.1.1
isort==5.9.3
lazy-object-proxy==1.6.0
isort==5.10.1
lazy-object-proxy==1.7.1
mccabe==0.6.1
mypy-extensions==0.4.3
packaging==21.0
packaging==21.3
pathspec==0.9.0
platformdirs==2.3.0
platformdirs==2.5.1
pluggy==1.0.0
py==1.10.0
pygments==2.10.0
pylint==2.11.1
pyparsing==2.4.7
py==1.11.0
pygments==2.11.2
pylint==2.12.2
pyparsing==3.0.7
pytest==7.1.1
pytest-black==0.3.12
pytest-cov==2.12.1
pytest-isort==2.0.0
pytest-cov==3.0.0
pytest-isort==3.0.0
pytest-repeat==0.9.1
pytest-timeout==1.4.2
pytest==6.2.5
readme-renderer==29.0
regex==2021.8.28
pytest-timeout==2.1.0
readme-renderer==34.0
six==1.16.0
toml==0.10.2
tomli==1.2.1
typing-extensions==3.10.0.2
tomli==2.0.1
typing-extensions==4.1.1
webencodings==0.5.1
wrapt==1.12.1
wrapt==1.13.3

# The following packages are considered to be unsafe in a requirements file:
# setuptools
3 changes: 2 additions & 1 deletion tests/test_cipher.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ def data(self, cipher, mode, randbytes):
return randbytes(
cipher.block_size
if mode is mb.Mode.ECB
else cipher.block_size * 128)
else cipher.block_size * 128
)

def test_pickle(self, cipher):
with pytest.raises(TypeError) as excinfo:
Expand Down

0 comments on commit 73f7614

Please sign in to comment.