Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
benfred committed Oct 23, 2024
1 parent 2df8edc commit 38a6a69
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion ci/update_python_test_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def update_python_test_versions():
# since it currently fails in GHA on SIP errors
exclusions = []
for v in versions:
if v.startswith("3.11") or v.startswith("3.12") or v.startswith("3.13"):
if v.startswith("3.11") or v.startswith("3.12"):
exclusions.append(" - os: macos-13\n")
exclusions.append(f" python-version: {v}\n")
first_exclude_line = lines.index(" exclude:\n", first_line)
Expand Down
1 change: 0 additions & 1 deletion src/python_interpreters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,6 @@ macro_rules! Python3Impl {
}

// Python 3.13
// TODO: this shares some similarities with python 3.12/3.11, we should refactor to a common macro
Python3Impl!(v3_13_0);

impl InterpreterState for v3_13_0::PyInterpreterState {
Expand Down

0 comments on commit 38a6a69

Please sign in to comment.