python313Packages.pypdfium2: ignore beta releases (#436051)

This commit is contained in:
Aleksana 2025-11-09 01:56:04 +00:00 committed by GitHub
commit 1e894edbc7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,6 +5,7 @@
buildPythonPackage,
fetchFromGitHub,
fetchgit,
gitUpdater,
setuptools-scm,
pdfium-binaries,
numpy,
@ -133,6 +134,12 @@ buildPythonPackage rec {
"pypdfium2"
];
passthru = {
updateScript = gitUpdater {
allowedVersions = "^[.0-9]+$";
};
};
meta = {
changelog = "https://github.com/pypdfium2-team/pypdfium2/releases/tag/${version}";
description = "Python bindings to PDFium";