Skip to content

Commit fea143c

Browse files
authored
Merge pull request #6809 from kyleknap/upgrade-interpreter
[v2] Upgrade installer Python interpreter to 3.9.11
2 parents 40bfd1e + 17f6c42 commit fea143c

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "feature",
3+
"category": "Python",
4+
"description": "Upgrade embedded Python version from Python 3.8 to Python 3.9. All standalone artifacts now run on Python 3.9.11."
5+
}

exe/assets/THIRD_PARTY_LICENSES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@ LICENSE ISSUES
12631263

12641264
------
12651265

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

12691269
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2

exe/tests/install.bats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ create_exes() {
4242
}
4343

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

4848
run_install() {

scripts/install_deps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from utils import cd, bin_path, run, virtualenv_enabled
44

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

99

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ commands =
1010

1111

1212
[testenv:exe]
13-
basepython = python3.8
13+
basepython = python3.9
1414
install_command =
1515
python -m pip install --no-build-isolation {opts} {packages}
1616
deps =
@@ -20,7 +20,7 @@ commands =
2020

2121

2222
[testenv:macpkg]
23-
basepython = python3.8
23+
basepython = python3.9
2424
install_command =
2525
python -m pip install --no-build-isolation {opts} {packages}
2626
deps =
@@ -30,7 +30,7 @@ commands =
3030

3131

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

4242

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

0 commit comments

Comments
 (0)