Skip to content

Commit

Permalink
Merge pull request #233 from mu-editor/203-update-default-python-buil…
Browse files Browse the repository at this point in the history
…d-standalone-release

Updated Python Build Standalone release to 20220630 on 3.10, 3.9, and 3.8.
  • Loading branch information
tmontes authored Jul 2, 2022
2 parents 1db7234 + 67da4f9 commit 55bf81d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
1 change: 1 addition & 0 deletions docs/newsfragments/203.bug
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated default Python Build Standalone release to 20220630 on 3.10, 3.9, and 3.8.
21 changes: 9 additions & 12 deletions src/pup/plugins/python_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,22 @@


_PYTHON_BUILD_STANDALONE_URLs = {
# Release https://github.com/indygreg/python-build-standalone/releases/tag/20220222
# upgraded Tcl/Tk and does not currently work for us on macOS: lock it across all
# platforms for consistency.
'darwin': {
'3.7': 'https://github.com/indygreg/python-build-standalone/releases/download/20200823/cpython-3.7.9-x86_64-apple-darwin-pgo-20200823T2228.tar.zst',
'3.8': 'https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-apple-darwin-pgo-20211017T1616.tar.zst',
'3.9': 'https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-apple-darwin-pgo-20211017T1616.tar.zst',
'3.10': 'https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-apple-darwin-pgo-20211017T1616.tar.zst',
'3.8': 'https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13+20220630-x86_64-apple-darwin-pgo-full.tar.zst',
'3.9': 'https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13+20220630-x86_64-apple-darwin-pgo-full.tar.zst',
'3.10': 'https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5+20220630-x86_64-apple-darwin-pgo-full.tar.zst',
},
'win32': {
'3.7': 'https://github.com/indygreg/python-build-standalone/releases/download/20200822/cpython-3.7.9-x86_64-pc-windows-msvc-shared-pgo-20200823T0118.tar.zst',
'3.8': 'https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-pc-windows-msvc-shared-pgo-20211017T1616.tar.zst',
'3.9': 'https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-pc-windows-msvc-shared-pgo-20211017T1616.tar.zst',
'3.10': 'https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-pc-windows-msvc-shared-pgo-20211017T1616.tar.zst',
'3.8': 'https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13+20220630-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst',
'3.9': 'https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13+20220630-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst',
'3.10': 'https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5+20220630-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst',
},
'linux': {
'3.8': 'https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-unknown-linux-gnu-pgo-20211017T1616.tar.zst',
'3.9': 'https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-unknown-linux-gnu-pgo-20211017T1616.tar.zst',
'3.10': 'https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-unknown-linux-gnu-pgo-20211017T1616.tar.zst',
'3.8': 'https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13+20220630-x86_64-unknown-linux-gnu-pgo-full.tar.zst',
'3.9': 'https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13+20220630-x86_64-unknown-linux-gnu-pgo-full.tar.zst',
'3.10': 'https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5+20220630-x86_64-unknown-linux-gnu-pgo-full.tar.zst',
},
}

Expand Down

0 comments on commit 55bf81d

Please sign in to comment.