Skip to content

Commit

Permalink
letsencrypt: fix 'dns' external dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul committed Mar 18, 2022
1 parent 3df9743 commit db43997
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup/letsencrypt/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
setup_requires=["setuptools-odoo"],
odoo_addon={
"external_dependencies_override": {
"python": {
"dns": "dnspython",
}
}
},
)

0 comments on commit db43997

Please sign in to comment.