Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changes/next-release/feature-Python-48862.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "feature",
"category": "Python",
"description": "Upgrade embedded Python version from Python 3.8 to Python 3.9. All standalone artifacts now run on Python 3.9.11."
}
2 changes: 1 addition & 1 deletion exe/assets/THIRD_PARTY_LICENSES
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ LICENSE ISSUES

------

** Python 3.8.8; version 3.8.8 -- https://github.com/python/cpython/tree/v3.8.8
** Python 3.9.11; version 3.9.11 -- https://github.com/python/cpython/tree/v3.9.11
Copyright © 2001-2020 Python Software Foundation. All rights reserved.

PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
Expand Down
2 changes: 1 addition & 1 deletion exe/tests/install.bats
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ create_exes() {
}

aws_version_output() {
echo "aws-cli/$1 Python/3.8.8 Darwin/17.7.0 botocore/1.12.48"
echo "aws-cli/$1 Python/3.9.11 Darwin/17.7.0 botocore/1.12.48"
}

run_install() {
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from utils import cd, bin_path, run, virtualenv_enabled

INSTALL_ARGS = "--no-build-isolation --no-cache-dir --no-index "
PINNED_PIP_VERSION = '20.0.2'
PINNED_PIP_VERSION = '22.0.4'
SETUP_DEPS = ("setuptools-", "setuptools_scm", "wheel")


Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ commands =


[testenv:exe]
basepython = python3.8
basepython = python3.9
install_command =
python -m pip install --no-build-isolation {opts} {packages}
deps =
Expand All @@ -20,7 +20,7 @@ commands =


[testenv:macpkg]
basepython = python3.8
basepython = python3.9
install_command =
python -m pip install --no-build-isolation {opts} {packages}
deps =
Expand All @@ -30,7 +30,7 @@ commands =


[testenv:test-exe]
basepython = python3.8
basepython = python3.9
install_command =
python -m pip install --no-build-isolation {opts} {packages}
deps =
Expand All @@ -41,6 +41,6 @@ commands =


[testenv:sign-exe]
basepython = python3.8
basepython = python3.9
commands =
{envpython} {toxinidir}/scripts/installers/sign-exe {posargs}