Skip to content

Commit 3f65182

Browse files
committed
chore: update CI and PyPI workflows to use Python 3.14 and upgrade action versions
1 parent 1fc4d0b commit 3f65182

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
options: --health-cmd="mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5
1818
strategy:
1919
matrix:
20-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
20+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2121
steps:
2222
- uses: actions/cache@v4
2323
with:
@@ -48,15 +48,15 @@ jobs:
4848
options: --health-cmd="mariadb-admin ping -uroot -p${MYSQL_ROOT_PASSWORD}" --health-interval 10s --health-timeout 5s --health-retries 5
4949
strategy:
5050
matrix:
51-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
51+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
5252
steps:
5353
- uses: actions/cache@v4
5454
with:
5555
path: ~/.cache/pip
5656
key: ${{ runner.os }}-pip-${{ hashFiles('**/poetry.lock') }}
5757
restore-keys: |
5858
${{ runner.os }}-pip-
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060
- uses: actions/setup-python@v5
6161
with:
6262
python-version: ${{ matrix.python-version }}

.github/workflows/pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
matrix:
1212
os: [ubuntu-latest, windows-latest, macos-15-intel, macos-latest]
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
- name: Build wheels
18-
uses: pypa/cibuildwheel@v2.23.3
18+
uses: pypa/cibuildwheel@v3.3.1
1919
env:
2020
CIBW_SKIP: "cp36-* cp37-* pp*"
2121
- uses: actions/upload-artifact@v4
@@ -25,10 +25,10 @@ jobs:
2525
build_sdist:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 0
31-
- uses: abatilo/actions-poetry@v3
31+
- uses: abatilo/actions-poetry@v4
3232
- name: Build
3333
run: poetry build
3434
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)