Skip to content

Commit

Permalink
Upgrade to Python 3.13.0. (#2553)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois authored Oct 8, 2024
1 parent 22c254c commit 120873b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
2 changes: 1 addition & 1 deletion docker/base/install_pythons.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ PYENV_VERSIONS=(
3.9.20
3.10.15
3.12.7
3.13.0rc3
3.13.0
pypy2.7-7.3.17
pypy3.5-7.0.0
pypy3.6-7.3.3
Expand Down
4 changes: 2 additions & 2 deletions pex/interpreter_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,8 +377,8 @@ def iter_compatible_versions(
PythonVersion(Lifecycle.STABLE, 3, 9, 20),
PythonVersion(Lifecycle.STABLE, 3, 10, 15),
PythonVersion(Lifecycle.STABLE, 3, 11, 10),
PythonVersion(Lifecycle.STABLE, 3, 12, 6),
PythonVersion(Lifecycle.DEV, 3, 13, 0),
PythonVersion(Lifecycle.STABLE, 3, 12, 7),
PythonVersion(Lifecycle.STABLE, 3, 13, 0),
)


Expand Down
12 changes: 0 additions & 12 deletions tests/integration/scie/test_pex_scie.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,18 +82,6 @@ def test_basic(
re_flags=re.DOTALL | re.MULTILINE,
)
return
if PY_VER >= (3, 13):
result.assert_failure(
expected_error_re=(
r".*"
r"^Failed to build 1 scie:$"
r".*"
r"^Provider: No released assets found for release [0-9]{{8}} Python {version} "
r"of flavor install_only\.$".format(version=".".join(map(str, PY_VER)))
),
re_flags=re.DOTALL | re.MULTILINE,
)
return
result.assert_success()

scie = os.path.join(str(tmpdir), "cowsay")
Expand Down

0 comments on commit 120873b

Please sign in to comment.