Skip to content

Commit 4237f1a

Browse files
committed
chore: update onto python 3.14
1 parent ee0ae90 commit 4237f1a

File tree

7 files changed

+25
-20
lines changed

7 files changed

+25
-20
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github: ["EmilStenstrom"]
1+
github: ["EmilStenstrom", "JuroOravec"]
22

.github/workflows/publish.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ jobs:
2222
strategy:
2323
matrix:
2424
platform:
25-
- runner: ubuntu-22.04
25+
- runner: ubuntu-latest
2626
target: x86_64
27-
- runner: ubuntu-22.04
27+
- runner: ubuntu-latest
2828
target: x86
29-
- runner: ubuntu-22.04
29+
- runner: ubuntu-latest
3030
target: aarch64
31-
- runner: ubuntu-22.04
31+
- runner: ubuntu-latest
3232
target: armv7
33-
- runner: ubuntu-22.04
33+
- runner: ubuntu-latest
3434
target: s390x
35-
- runner: ubuntu-22.04
35+
- runner: ubuntu-latest
3636
target: ppc64le
3737
steps:
3838
- uses: actions/checkout@v4
3939
- uses: actions/setup-python@v5
4040
with:
41-
python-version: "3.13"
41+
python-version: "3.14"
4242
- name: Build wheels
4343
uses: PyO3/maturin-action@v1
4444
with:
@@ -57,19 +57,19 @@ jobs:
5757
strategy:
5858
matrix:
5959
platform:
60-
- runner: ubuntu-22.04
60+
- runner: ubuntu-latest
6161
target: x86_64
62-
- runner: ubuntu-22.04
62+
- runner: ubuntu-latest
6363
target: x86
64-
- runner: ubuntu-22.04
64+
- runner: ubuntu-latest
6565
target: aarch64
66-
- runner: ubuntu-22.04
66+
- runner: ubuntu-latest
6767
target: armv7
6868
steps:
6969
- uses: actions/checkout@v4
7070
- uses: actions/setup-python@v5
7171
with:
72-
python-version: "3.13"
72+
python-version: "3.14"
7373
- name: Build wheels
7474
uses: PyO3/maturin-action@v1
7575
with:
@@ -96,7 +96,7 @@ jobs:
9696
- uses: actions/checkout@v4
9797
- uses: actions/setup-python@v5
9898
with:
99-
python-version: "3.13"
99+
python-version: "3.14"
100100
architecture: ${{ matrix.platform.target }}
101101
- name: Build wheels
102102
uses: PyO3/maturin-action@v1
@@ -123,7 +123,7 @@ jobs:
123123
- uses: actions/checkout@v4
124124
- uses: actions/setup-python@v5
125125
with:
126-
python-version: "3.13"
126+
python-version: "3.14"
127127
- name: Build wheels
128128
uses: PyO3/maturin-action@v1
129129
with:

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
17-
os: [ubuntu-20.04, windows-latest]
16+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
17+
os: [ubuntu-latest, windows-latest]
1818

1919
steps:
2020
- uses: actions/checkout@v4

CHANGELOG.md

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

3+
## v1.0.3
4+
5+
- Update to Python 3.14
6+
37
## v1.0.2
48

59
- Add build for Python 3.13 for Windows.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "djc_core_html_parser"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "djc_core_html_parser"
7-
version = "1.0.2"
7+
version = "1.0.3"
88
requires-python = ">=3.8, <4.0"
99
description = "HTML parser used by django-components written in Rust."
1010
keywords = ["django", "components", "html"]
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
2323
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2425
"Programming Language :: Rust",
2526
"Programming Language :: Python :: Implementation :: CPython",
2627
"Programming Language :: Python :: Implementation :: PyPy",

0 commit comments

Comments
 (0)