# Pip requirements file for installation of nocaselist project.
#
# The order of packages is significant, because pip processes them in the order
# of appearance.
#
# Make sure that the minimum versions required in this file are consistent with
# the minimum versions specified in minimum-constraints.txt.


# The base dependencies are not specified in this file:
# pip
# setuptools
# wheel


# Direct dependencies (except pip, setuptools, wheel):

# On Python 3.6, pip 21.3.1 is the newest version and it fails recognizing
#   that typing-extensions 4.2.0 started requiring Python>=3.7
# The typing-extensions features used by nocaselist are in standard Python on Python>=3.10
typing-extensions>=3.10,<4.2.0; python_version == '3.6'
typing-extensions>=3.10; python_version >= '3.7' and python_version <= '3.9'


# Indirect dependencies are not specified in this file.
