0
0
mirror of https://github.com/thegeeklab/corenetworks.git synced 2024-09-21 06:32:44 +02:00

add requests to requirements

This commit is contained in:
Robert Kaussow 2020-05-11 19:10:40 +02:00
parent 1591994daf
commit e3dce0340f
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -60,6 +60,6 @@ setup(
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
],
install_requires=["six", "jsonschema"],
install_requires=["six", "jsonschema", "requests"],
dependency_links=[],
)