[FIX] letsencrypt: remove `cryptography` from python depends
Such dependency is already included in Odoo requirements using a pinned
version [1]. Adding here could cause to upgrade the library to an
incompatible version.
[1] 710a2b2a7a/requirements.txt (L3)
pull/2652/head
parent
7af5f521fb
commit
b1cc4ce906
|
@ -17,7 +17,5 @@
|
||||||
"demo": ["demo/ir_cron.xml"],
|
"demo": ["demo/ir_cron.xml"],
|
||||||
"post_init_hook": "post_init_hook",
|
"post_init_hook": "post_init_hook",
|
||||||
"installable": True,
|
"installable": True,
|
||||||
"external_dependencies": {
|
"external_dependencies": {"python": ["acme<2.0.0", "dnspython", "josepy"]},
|
||||||
"python": ["acme<2.0.0", "cryptography", "dnspython", "josepy"]
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
# generated from manifests external_dependencies
|
# generated from manifests external_dependencies
|
||||||
acme<2.0.0
|
acme<2.0.0
|
||||||
astor
|
astor
|
||||||
cryptography
|
|
||||||
cryptography==2.6.1
|
cryptography==2.6.1
|
||||||
dataclasses
|
dataclasses
|
||||||
dnspython
|
dnspython
|
||||||
|
|
Loading…
Reference in New Issue