mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 17:34:32 +02:00
Test against Python 3.13 pre-release (#619)
* Test against Python 3.13 pre-release * Skip tests for numpy on Python 3.13 Refs https://github.com/simonw/sqlite-utils/pull/619#issuecomment-1998798451 * Try to avoid Python 3.13 cog differences * Hide \b characters in cli-reference * Fixed .rST warning
This commit is contained in:
parent
17eb8184d2
commit
5bd7aec4d2
4 changed files with 30 additions and 26 deletions
5
.github/workflows/test.yml
vendored
5
.github/workflows/test.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
|||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
||||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
|
||||
numpy: [0, 1]
|
||||
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
|
||||
# Skip 3.8 and 3.9 on macos-14 - it only has 3.10+
|
||||
|
|
@ -19,12 +19,15 @@ jobs:
|
|||
os: macos-14
|
||||
- python-version: "3.9"
|
||||
os: macos-14
|
||||
- python-version: "3.13"
|
||||
numpy: 1
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
allow-prereleases: true
|
||||
- uses: actions/cache@v4
|
||||
name: Configure pip caching
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue