Remove 'py3' from requirements filename (#6509)

This commit is contained in:
Sebastian Rittau
2021-12-06 11:59:04 +01:00
committed by GitHub
parent 8a7c23624e
commit 206e1ae91b
8 changed files with 15 additions and 15 deletions

View File

@@ -27,7 +27,7 @@ class StubtestFailed(Exception):
@functools.lru_cache()
def get_mypy_req():
with open("requirements-tests-py3.txt") as f:
with open("requirements-tests.txt") as f:
return next(line.strip() for line in f if "mypy" in line)