Skip to content

Commit

Permalink
fixup! fixup! Complete pip-tools setup (aio-libs#5486)
Browse files Browse the repository at this point in the history
  • Loading branch information
greshilov committed Mar 2, 2021
1 parent 5996707 commit 39e82e0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@


def txt_file_name(in_file_name):
txt_name = f"{PLATFORM_NAME}-{sys.version_info.major}.{sys.version_info.minor}-{in_file_name}.txt"
components = (
PLATFORM_NAME,
f"{sys.version_info.major}.{sys.version_info.minor}",
in_file_name,
)
txt_name = f"{'-'.join(components)}.txt"
return PIN_FOLDER / txt_name


Expand Down

0 comments on commit 39e82e0

Please sign in to comment.