diff options
Diffstat (limited to 'python/python3-pydocstyle/python3-pydocstyle.SlackBuild')
-rw-r--r-- | python/python3-pydocstyle/python3-pydocstyle.SlackBuild | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/python/python3-pydocstyle/python3-pydocstyle.SlackBuild b/python/python3-pydocstyle/python3-pydocstyle.SlackBuild index 8f43b4b881..b7b4d9ae34 100644 --- a/python/python3-pydocstyle/python3-pydocstyle.SlackBuild +++ b/python/python3-pydocstyle/python3-pydocstyle.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=python3-pydocstyle -VERSION=${VERSION:-6.2.0} +VERSION=${VERSION:-6.3.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -66,7 +66,14 @@ find -L . \ # Fix version number within metadata (code taken from the Arch Linux PKGBUILD): # https://gitlab.archlinux.org/archlinux/packaging/packages/python-pydocstyle/-/blob/main/PKGBUILD -sed -e "s|^version = .*|version = \"$VERSION\"|" -i pyproject.toml +sed -e "s|version = \"0.0.0-dev\"|version = \"$VERSION\"|" -i pyproject.toml + +# The source (optionally) requires tomli at >=1.2.3 for reading .toml configs. +# However, the only change between tomli 1.2.2 and 1.2.3 is a fix that allows lower case "t" and "z" within datetimes: +# https://github.com/hukkin/tomli/compare/1.2.2...1.2.3 +# These edits allow python3-pydocstyle to use tomli 1.2.2 (the version installed in Slackware 15.0) instead. +sed -e "s|version = \">=1.2.3\"|version = \">=1.2.2\"|" -i pyproject.toml +sed "s/tomli>=1.2.3/tomli>=1.2.2/g" -i requirements/runtime.txt python3 -m build --no-isolation python3 -m installer -d "$PKG" dist/*.whl |