Skip to content

Commit 73f7614

Browse files
committed
requirements: Update reqs
Also: re-blacken test_cipher
1 parent 9e228eb commit 73f7614

File tree

4 files changed

+38
-39
lines changed

4 files changed

+38
-39
lines changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This file is autogenerated by pip-compile
2+
# This file is autogenerated by pip-compile with python 3.9
33
# To update, run:
44
#
55
# pip-compile --no-annotate setup.py
66
#
7-
certifi==2021.5.30
7+
certifi==2021.10.8

requirements/build.txt

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
#
2-
# This file is autogenerated by pip-compile
2+
# This file is autogenerated by pip-compile with python 3.9
33
# To update, run:
44
#
55
# pip-compile --no-annotate requirements/build.in
66
#
7-
click==8.0.1
8-
cython==0.29.24
9-
delocate==0.9.1 ; sys_platform == "darwin"
10-
pep517==0.11.0
11-
pip-tools==6.3.0
12-
six==1.16.0
13-
tomli==1.2.1
14-
typing-extensions==3.10.0.2
15-
wheel==0.37.0
7+
click==8.0.4
8+
cython==0.29.28
9+
delocate==0.10.2 ; sys_platform == "darwin"
10+
pep517==0.12.0
11+
pip-tools==6.5.1
12+
tomli==2.0.1
13+
typing-extensions==4.1.1
14+
wheel==0.37.1
1615

1716
# The following packages are considered to be unsafe in a requirements file:
1817
# pip

requirements/tests.txt

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,43 @@
11
#
2-
# This file is autogenerated by pip-compile
2+
# This file is autogenerated by pip-compile with python 3.9
33
# To update, run:
44
#
5-
# pip-compile --no-annotate ./requirements/test.in
5+
# pip-compile --no-annotate requirements/tests.in
66
#
7-
astroid==2.8.0
8-
attrs==21.2.0
9-
black==21.9b0
7+
astroid==2.9.3
8+
attrs==21.4.0
9+
black==22.1.0
1010
bleach==4.1.0
11-
click==8.0.1
12-
coverage==5.5
13-
cython==0.29.24
14-
docutils==0.17.1
11+
click==8.0.4
12+
coverage[toml]==6.3.2
13+
cython==0.29.28
14+
docutils==0.18.1
1515
iniconfig==1.1.1
16-
isort==5.9.3
17-
lazy-object-proxy==1.6.0
16+
isort==5.10.1
17+
lazy-object-proxy==1.7.1
1818
mccabe==0.6.1
1919
mypy-extensions==0.4.3
20-
packaging==21.0
20+
packaging==21.3
2121
pathspec==0.9.0
22-
platformdirs==2.3.0
22+
platformdirs==2.5.1
2323
pluggy==1.0.0
24-
py==1.10.0
25-
pygments==2.10.0
26-
pylint==2.11.1
27-
pyparsing==2.4.7
24+
py==1.11.0
25+
pygments==2.11.2
26+
pylint==2.12.2
27+
pyparsing==3.0.7
28+
pytest==7.1.1
2829
pytest-black==0.3.12
29-
pytest-cov==2.12.1
30-
pytest-isort==2.0.0
30+
pytest-cov==3.0.0
31+
pytest-isort==3.0.0
3132
pytest-repeat==0.9.1
32-
pytest-timeout==1.4.2
33-
pytest==6.2.5
34-
readme-renderer==29.0
35-
regex==2021.8.28
33+
pytest-timeout==2.1.0
34+
readme-renderer==34.0
3635
six==1.16.0
3736
toml==0.10.2
38-
tomli==1.2.1
39-
typing-extensions==3.10.0.2
37+
tomli==2.0.1
38+
typing-extensions==4.1.1
4039
webencodings==0.5.1
41-
wrapt==1.12.1
40+
wrapt==1.13.3
4241

4342
# The following packages are considered to be unsafe in a requirements file:
4443
# setuptools

tests/test_cipher.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ def data(self, cipher, mode, randbytes):
123123
return randbytes(
124124
cipher.block_size
125125
if mode is mb.Mode.ECB
126-
else cipher.block_size * 128)
126+
else cipher.block_size * 128
127+
)
127128

128129
def test_pickle(self, cipher):
129130
with pytest.raises(TypeError) as excinfo:

0 commit comments

Comments
 (0)