Need some fixes in this version.

This commit is contained in:
Itamar Turner-Trauring 2022-01-24 11:30:49 -05:00
parent b64e6552a4
commit e9d6eb8d0e

View File

@ -138,8 +138,11 @@ install_requires = [
# Backported configparser for Python 2:
"configparser ; python_version < '3.0'",
# For the RangeMap datastructure.
"collections-extended",
# For the RangeMap datastructure. Need 2.0.2 at least for bugfixes. Python
# 2 doesn't actually need this, since HTTP storage protocol isn't supported
# there, so we just pick whatever version so that code imports.
"collections-extended >= 2.0.2 ; python_version > '3.0'",
"collections-extended ; python_version < '3.0'",
# HTTP server and client
"klein",