diff options
author | James Falcon <james.falcon@canonical.com> | 2021-10-22 22:06:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-22 21:06:51 -0600 |
commit | 2db713346d656c3486228678ad020b56440c1e34 (patch) | |
tree | 5191e071a845328405caa5ee6a65878612898cd2 /requirements.txt | |
parent | 6cf9dc870f69f8d910388193a4a59474117915b7 (diff) | |
download | vyos-cloud-init-2db713346d656c3486228678ad020b56440c1e34.tar.gz vyos-cloud-init-2db713346d656c3486228678ad020b56440c1e34.zip |
Remove pin in dependencies for jsonschema (#1078)
In jsonschema 4, hostname validation was changed to have an optional
dependency on the fqdn package. Since we don't have this dependency
in cloud-init, attempting this validation will no longer fail for
a string that isn't a valid hostname.
Diffstat (limited to 'requirements.txt')
-rw-r--r-- | requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt index 27cef184..c4adc455 100644 --- a/requirements.txt +++ b/requirements.txt @@ -31,7 +31,7 @@ requests jsonpatch # For validating cloud-config sections per schema definitions -jsonschema==3.2.0 +jsonschema # Used by DataSourceVMware to inspect the host's network configuration during # the "setup()" function. |