Remove dependency on dict.sorted

This is no longer used, and we don't need to pull it in.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2020-02-17 12:43:34 +01:00
parent 5808733270
commit d23b576a60
1 changed files with 1 additions and 1 deletions

View File

@ -65,6 +65,6 @@ setup(
"six",
"dogpile.cache",
],
extras_require={':python_version=="2.7"': ["enum34", "lockfile", "dict.sorted"]},
extras_require={':python_version=="2.7"': ["enum34", "lockfile"]},
tests_require=["mock", "nose", "nose-cov"],
)