# See ~/local/tools/supported_python_versions_pip.py for helper script
pytest >= 6.2.5            ;                               python_version >= '3.10.0'  # Python 3.10+
pytest >= 4.6.0            ; python_version < '3.10.0' and python_version >= '3.7.0'   # Python 3.7-3.9
pytest >= 4.6.0            ; python_version < '3.7.0'  and python_version >= '3.6.0'   # Python 3.6

coverage>=5.2.1       ;                            python_version >= '3.6'    # Python 3.6+
coverage>=4.4.0       ; python_version < '3.6' and python_version >= '2.7'    # Python 2.7

xdoctest >= 0.15.10

pytest-cov >= 3.0.0           ;                               python_version >= '3.6.0'   # Python 3.6+

# https://github.com/pytorch/vision
# 0.5.0 pairs with torch 1.4.0
# 0.8.1 pairs with torch 1.7.0
# 0.8.2 pairs with torch 1.7.1
# 0.9.0 pairs with torch 1.8.0
# 0.12.0 pairs with torch 1.11.0

# python  ~/local/tools/supported_python_versions_pip.py torchvision
torchvision>=0.12.0    ; python_version < '3.11' and python_version >= '3.10'    # Python 3.10+
torchvision>=0.10.0    ; python_version < '3.10' and python_version >= '3.9'    # Python 3.9
torchvision>=0.10.0    ; python_version < '3.9' and python_version >= '3.8'    # Python 3.8
torchvision>=0.10.0    ; python_version < '3.8' and python_version >= '3.7'    # Python 3.7
torchvision>=0.10.0    ; python_version < '3.7' and python_version >= '3.6'    # Python 3.6

# netharn>=0.6.0
