()
| 858 | |
| 859 | |
| 860 | def _applicable_py_versions(): |
| 861 | # type: () -> Iterable[str] |
| 862 | for version in ALL_PY_VERSIONS: |
| 863 | if WINDOWS and _ALL_PY_VERSIONS_TO_VERSION_INFO[version][:2] < (3, 8): |
| 864 | continue |
| 865 | yield version |
| 866 | |
| 867 | |
| 868 | def all_pythons(): |
no outgoing calls
no test coverage detected
searching dependent graphs…