python3-frozendict: update to 2.1.1.

This commit is contained in:
Joel Beckmeyer 2021-11-30 09:52:30 -05:00 committed by Érico Nogueira Rolim
parent 80068b3cd8
commit 18e2a4ee02
1 changed files with 3 additions and 12 deletions

View File

@ -1,6 +1,6 @@
# Template file for 'python3-frozendict' # Template file for 'python3-frozendict'
pkgname=python3-frozendict pkgname=python3-frozendict
version=2.1.0 version=2.1.1
revision=1 revision=1
wrksrc="frozendict-${version}" wrksrc="frozendict-${version}"
build_style=python3-module build_style=python3-module
@ -12,17 +12,8 @@ maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
license="LGPL-3.0-only" license="LGPL-3.0-only"
homepage="https://github.com/Marco-Sulla/python-frozendict" homepage="https://github.com/Marco-Sulla/python-frozendict"
distfiles="${PYPI_SITE}/f/frozendict/frozendict-${version}.tar.gz" distfiles="${PYPI_SITE}/f/frozendict/frozendict-${version}.tar.gz"
checksum=0189168749ddea8601afd648146c502533f93ae33840eb76cd71f694742623cd checksum=655b879217dd445a2023e16154cc231febef802b5c812d5c2e822280ad69e1dc
do_check() { do_check() {
# skip tests that are failing when using C PYTHONPATH="$(cd build/lib* && pwd)" pytest3
# extension due to difference between pure py and
# C extension
PYTHONPATH="$(cd build/lib* && pwd)" pytest3 \
--deselect=test/test_coold.py::test_repr \
--deselect=test/test_coold.py::test_str \
--deselect=test/test_coold.py::test_format \
--deselect=test/test_frozendict_c.py::test_repr \
--deselect=test/test_frozendict_c.py::test_str \
--deselect=test/test_frozendict_c.py::test_format
} }