From e3dce0340fa8c01142363c6c82a25946fcc28e78 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 11 May 2020 19:10:40 +0200 Subject: [PATCH] add requests to requirements --- CHANGELOG.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9823700..aa6321d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ * ENHANCEMENT * make `ttl` mandatory for add function + * add `requests` to requirements * BUGFIX * update (delete + create) records with different `ttl` to prevent duplicate entries * add a workaround to prevent CNAME creation if a record with the same name already exists diff --git a/setup.py b/setup.py index edf4e8e..48ed188 100644 --- a/setup.py +++ b/setup.py @@ -60,6 +60,6 @@ setup( "Programming Language :: Python :: 3.8", "Topic :: Software Development", ], - install_requires=["six", "jsonschema"], + install_requires=["six", "jsonschema", "requests"], dependency_links=[], )