1# This file lists the ***oldest possible dependencies*** needed to run 2# "make check" successfully under ***Python 3.6***. It is used primarily 3# by GitLab CI to ensure that our stated minimum versions in setup.cfg 4# are truthful and regularly validated. 5# 6# This file should not contain any dependencies that are not expressed 7# by the [devel] section of setup.cfg, except for transitive 8# dependencies which must be enumerated here explicitly to eliminate 9# dependency resolution ambiguity. 10# 11# When adding new dependencies, pin the very oldest non-yanked version 12# on PyPI that allows the test suite to pass. 13 14# Dependencies for the TUI addon (Required for successful linting) 15urwid==2.1.2 16urwid-readline==0.13 17Pygments==2.9.0 18 19# Dependencies for FUSE support for qom-fuse 20fusepy==2.0.4 21 22# Test-runners, utilities, etc. 23avocado-framework==90.0 24 25# Linters 26flake8==3.6.0 27isort==5.1.2 28mypy==0.780 29pylint==2.8.0 30 31# Transitive flake8 dependencies 32mccabe==0.6.0 33pycodestyle==2.4.0 34pyflakes==2.0.0 35 36# Transitive mypy dependencies 37mypy-extensions==0.4.3 38typed-ast==1.4.0 39typing-extensions==3.7.4 40 41# Transitive pylint dependencies 42astroid==2.5.4 43lazy-object-proxy==1.4.0 44toml==0.10.0 45wrapt==1.12.1 46