Skip to content

Commit 273d6ee

Browse files
committed
Support Python 3.14
1 parent 053b5c4 commit 273d6ee

File tree

4 files changed

+32
-27
lines changed

4 files changed

+32
-27
lines changed

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ jobs:
77
publish:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111

1212
- name: Install poetry
1313
run: pipx install poetry
1414

15-
- uses: actions/setup-python@v5
15+
- uses: actions/setup-python@v6
1616
with:
17-
python-version: "3.13"
17+
python-version: "3.14"
1818
cache: poetry
1919

2020
- name: Upload to pypi

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Install poetry
2121
run: pipx install poetry
2222

23-
- uses: actions/setup-python@v5
23+
- uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
cache: poetry
@@ -39,7 +39,7 @@ jobs:
3939
- run: ./scripts/ci.sh
4040

4141
- uses: codecov/codecov-action@v5
42-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13'
42+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.14'
4343
with:
4444
token: ${{ secrets.CODECOV_TOKEN }}
4545

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes
22

3+
## 0.4.7
4+
5+
- Bump dependencies
6+
- Support Python 3.14
7+
38
## 0.4.6
49

510
- Bump dependencies

poetry.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)