From 22fb1b9d67b40c51610222c28a787ffd2b1b6b6e Mon Sep 17 00:00:00 2001 From: EnumDev Date: Wed, 6 May 2026 12:19:49 +0300 Subject: [PATCH] Rebuild with python 3.14 --- pkg.info | 6 ++++-- source.sh | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkg.info b/pkg.info index e3fc8c3..b538262 100644 --- a/pkg.info +++ b/pkg.info @@ -1,12 +1,14 @@ name: python-docutils description: Open-source python text processing system for processing plaintext documentation into other formats version: 0.22.4 -revision: 1 +revision: 2 license: Public-Domain,BSD-2-Clause,GPL3-or-later,Python-2.0 +maintainers: + - enumdev@enumerated.dev architecture: any type: source depends: - - python3 + - python3=3.14.* make_depends: - python-build - python-flit-core diff --git a/source.sh b/source.sh index fa75744..1694478 100644 --- a/source.sh +++ b/source.sh @@ -5,7 +5,7 @@ # The build function is executed in the source directory # This function is used to compile the source code build() { - python3 -m build --wheel --no-isolation . + python3 -m build --wheel --skip-dependency-check --no-isolation . } # The package function is executed in the source directory