Skip to content

Commit 792e82f

Browse files
committed
release: v1.0.3
Use uv_build as a package build system instead of setuptools, which does not build correctly. Co-Authored-by: Pascal Repond <[email protected]>
1 parent 5748240 commit 792e82f

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

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

3+
## [v1.0.3](https://github.com/rero/flask-wiki/tree/v1.0.3) (2025-08-05)
4+
5+
[Full Changelog](https://github.com/rero/flask-wiki/compare/v1.0.2...v1.0.3)
6+
7+
- chore: use uv_publish as a build system (by @PascalRepond)
8+
39
## [v1.0.2](https://github.com/rero/flask-wiki/tree/v1.0.2) (2025-07-31)
410

511
**Changes:**

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[project]
22
name = "flask-wiki"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
description = "Simple file-based wiki for Flask"
55
readme = "README.md"
66
authors = [{name = "RERO+", email = "[email protected]"}]
77
license = "BSD-3-Clause"
8+
license-files = ["LICENSE"]
89
requires-python = ">= 3.9.2, <3.13"
910

1011
dependencies = [
@@ -60,10 +61,11 @@ run_tests = {cmd = "./scripts/test", help = "Runs all tests"}
6061
update_catalog = "pybabel update -i flask_wiki/translations/messages.pot -d flask_wiki/translations --no-fuzzy-matching --ignore-obsolete true"
6162

6263
[build-system]
63-
requires = ["setuptools"]
64+
requires = ["uv_build"]
65+
build-backend = "uv_build"
6466

65-
[tool.setuptools.packages.find]
66-
where = ["."]
67+
[tool.uv.build-backend]
68+
module-root = "."
6769

6870
[tool.uv]
6971
package = true

uv.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.

0 commit comments

Comments
 (0)