Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-22.04, ubuntu-24.04, macos-15, macos-14, windows-2022]
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9", "pypy3.10", ]
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10", "pypy3.11", ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
Expand All @@ -33,7 +33,8 @@ jobs:
uses: r-lib/actions/setup-tinytex@v2
- name: Install and configure Poetry
run: |
pip3 install -U poetry setuptools
pip3 install -U setuptools wheel
pip3 install -U poetry
poetry config virtualenvs.in-project true
- name: Set up cache
uses: actions/cache@v4
Expand Down