Skip to content

Commit 064005f

Browse files
authored
Upgrade to 3.15.0a7. (#3115)
1 parent a75cc4f commit 064005f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/base/install_pythons.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ DEADSNAKES_VERSIONS=(
1717
"3.11 {dev,venv,distutils}=3.11.15"
1818
"3.13 {dev,venv}=3.13.12"
1919
"3.14 {dev,venv}=3.14.3"
20-
"3.15 {dev,venv}=3.15.0~a6"
20+
"3.15 {dev,venv}=3.15.0~a7"
2121
)
2222

2323
add-apt-repository --yes --ppa deadsnakes

tests/integration/venv_ITs/test_issue_1973.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def assert_colors_import_error(
3636
if python.version[0] == 2:
3737
assert b"ImportError: No module named colors\n" in stderr, stderr.decode("utf-8")
3838
else:
39-
assert b"ModuleNotFoundError: No module named 'colors'\n" in stderr, stderr.decode("utf-8")
39+
assert b"ModuleNotFoundError: No module named 'colors'" in stderr, stderr.decode("utf-8")
4040

4141

4242
@pytest.fixture

0 commit comments

Comments
 (0)