Skip to content

Commit

Permalink
Update find-downloads.py (#408)
Browse files Browse the repository at this point in the history
add support for [email protected]
  • Loading branch information
alextremblay authored Aug 27, 2023
1 parent d5c1f6a commit a86bd2a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions rye/find-downloads.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,28 @@ def _sort_key(info):

# These are manually maintained for now
PYPY_DOWNLOADS = {
(3, 10, 12): {
(
"x86_64",
"linux",
): "https://downloads.python.org/pypy/pypy3.10-v7.3.12-linux64.tar.bz2",
(
"aarch64",
"linux",
): "https://downloads.python.org/pypy/pypy3.10-v7.3.12-aarch64.tar.bz2",
(
"x86_64",
"macos",
): "https://downloads.python.org/pypy/pypy3.10-v7.3.12-macos_x86_64.tar.bz2",
(
"aarch64",
"macos",
): "https://downloads.python.org/pypy/pypy3.10-v7.3.12-macos_arm64.tar.bz2",
(
"x86_64",
"windows",
): "https://downloads.python.org/pypy/pypy3.10-v7.3.12-win64.zip",
},
(3, 9, 16): {
(
"x86_64",
Expand Down

0 comments on commit a86bd2a

Please sign in to comment.