Skip to content

Commit c85a337

Browse files
committed
update python modules with cryptogaphy version pinned
1 parent d09bea3 commit c85a337

File tree

3 files changed

+123
-83
lines changed

3 files changed

+123
-83
lines changed

Pipfile

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ verify_ssl = true
55

66
[packages]
77
black = "==19.10b0"
8+
# Cryptography 3.4+ requires Rust to build
9+
# https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst
10+
cryptography = "==3.3.2"
811
flake8 = "*"
912
lektor = "*"
1013
# Werkzeug added and pinned to mitigate this issue:

Pipfile.lock

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

requirements.txt

+41-21
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,45 @@
1+
#
2+
# These requirements were autogenerated by pipenv
3+
# To regenerate from the project's Pipfile, run:
4+
#
5+
# pipenv lock --requirements
6+
#
7+
18
-i https://pypi.org/simple
2-
babel==2.8.0
3-
certifi==2019.11.28
4-
cffi==1.14.0
5-
chardet==3.0.4
6-
click==7.1.1
7-
cryptography==2.9
8-
exifread==2.1.2
9-
flask==1.1.1
10-
idna==2.9
9+
appdirs==1.4.4
10+
attrs==20.3.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
11+
babel==2.9.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
12+
black==19.10b0
13+
certifi==2020.12.5
14+
cffi==1.14.5
15+
chardet==4.0.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
16+
click==7.1.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
17+
cryptography==3.3.2
18+
exifread==2.3.2
19+
filetype==1.0.7
20+
flake8==3.8.4
21+
flask==1.1.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
22+
idna==2.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
1123
inifile==0.4
12-
itsdangerous==1.1.0
13-
jinja2==2.11.1
14-
lektor==3.1.3
15-
markupsafe==1.1.1
24+
itsdangerous==1.1.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
25+
jinja2==2.11.3; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
26+
lektor==3.2.0
27+
markupsafe==1.1.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
28+
mccabe==0.6.1
1629
mistune==0.8.4
17-
pathtools==0.1.2
18-
pycparser==2.20
19-
pyopenssl==19.1.0
20-
pytz==2019.3
21-
requests[security]==2.23.0
22-
six==1.14.0
23-
urllib3==1.25.8
24-
watchdog==0.10.2
30+
pathspec==0.8.1
31+
pycodestyle==2.6.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
32+
pycparser==2.20; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
33+
pyflakes==2.2.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
34+
pyopenssl==20.0.1
35+
python-slugify==4.0.1
36+
pytz==2021.1
37+
regex==2020.11.13
38+
requests[security]==2.25.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
39+
six==1.15.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'
40+
text-unidecode==1.3
41+
toml==0.10.2; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2'
42+
typed-ast==1.4.2
43+
urllib3==1.26.3; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'
44+
watchdog==2.0.1; python_version >= '3.6'
2545
werkzeug==0.16.1

0 commit comments

Comments
 (0)