Update package version to 3.4.6

This commit is contained in:
2026-03-22 11:53:20 +02:00
parent 42f563b60d
commit 3057555484
2 changed files with 12 additions and 10 deletions
+7 -7
View File
@@ -2,16 +2,16 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The prepare function is executed in the root of the temp directory
# This function is used for putting downloaded files to the correct location or applying patches
prepare() {
echo "You may remove this function if you do not intend to use it"
}
# 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 check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly
check() {
PYTHONPATH=src pytest
}
# The package function is executed in the source directory