Skip to content

Commit e432f29

Browse files
authored
Merge pull request #3 from django-components/jo-1053-add-py3.13-windows-build
refactor: add build for Python 3.13 for Windows
2 parents 8884067 + 581d54e commit e432f29

File tree

6 files changed

+24
-7
lines changed

6 files changed

+24
-7
lines changed

.github/dependabot.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: github-actions
9+
# This actually targets ./.github/workflows/
10+
# See https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#directories-or-directory--
11+
directory: "/"
12+
schedule:
13+
interval: monthly

.github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v4
3939
- uses: actions/setup-python@v5
4040
with:
41-
python-version: 3.x
41+
python-version: "3.13"
4242
- name: Build wheels
4343
uses: PyO3/maturin-action@v1
4444
with:
@@ -69,7 +69,7 @@ jobs:
6969
- uses: actions/checkout@v4
7070
- uses: actions/setup-python@v5
7171
with:
72-
python-version: 3.x
72+
python-version: "3.13"
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.x
99+
python-version: "3.13"
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.x
126+
python-version: "3.13"
127127
- name: Build wheels
128128
uses: PyO3/maturin-action@v1
129129
with:

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release notes
22

3+
## v1.0.2
4+
5+
- Add build for Python 3.13 for Windows.
6+
37
## v1.0.1
48

59
- Fix module typing.

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "djc_core_html_parser"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
edition = "2021"
55

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

pyproject.toml

+1-1
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.1"
7+
version = "1.0.2"
88
requires-python = ">=3.8, <4.0"
99
description = "HTML parser used by django-components written in Rust."
1010
keywords = ["django", "components", "html"]

0 commit comments

Comments
 (0)