[CI][BE] Move docker forlder to .ci (#93104)

Follow up after https://github.com/pytorch/pytorch/pull/92569

Pull Request resolved: https://github.com/pytorch/pytorch/pull/93104
Approved by: https://github.com/huydhn, https://github.com/seemethere, https://github.com/ZainRizvi
This commit is contained in:
Nikita Shulga
2023-02-03 12:25:30 +00:00
committed by PyTorch MergeBot
parent 6e1cfcdf4b
commit 6c4dc98b9d
49 changed files with 28 additions and 28 deletions

View File

@ -9,7 +9,7 @@ def get_correct_mypy_version():
# there's probably a more elegant way to do this
match, = re.finditer(
r'mypy==(\d+(?:\.\d+)*)',
(Path(__file__).parent.parent / '.circleci' / 'docker' / 'requirements-ci.txt').read_text(),
(Path(__file__).parent.parent / '.ci' / 'docker' / 'requirements-ci.txt').read_text(),
)
version, = match.groups()
return version