Skip to content

Commit

Permalink
fixes & tests Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Jan 3, 2024
1 parent f5a4d24 commit c787b13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'windows-2022', 'macos-latest']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9-v7.3.12', 'pypy3.10-v7.3.12']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-alpha.2', 'pypy3.9-v7.3.12', 'pypy3.10-v7.3.12']

name: "Python ${{ matrix.python }} / ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
python -m pip install pytest pytest-github-actions-annotate-failures
- name: Install NumPy
if: ${{ !startsWith(matrix.python, 'pypy') }}
if: ${{ !startsWith(matrix.python, 'pypy') && !contains(matrix.python, 'alpha') }}
run: |
python -m pip install numpy scipy
Expand Down
2 changes: 2 additions & 0 deletions cmake/darwin-ld-cpython.sym
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,8 @@
-U _PyObject_CheckReadBuffer
-U _PyObject_ClearWeakRefs
-U _PyObject_CopyData
-U _PyObject_DelAttr
-U _PyObject_DelAttrString
-U _PyObject_DelItem
-U _PyObject_DelItemString
-U _PyObject_Dir
Expand Down

0 comments on commit c787b13

Please sign in to comment.