mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-22 17:17:03 +02:00
python3-trimesh: update to 3.10.7.
This commit is contained in:
parent
6211084fe2
commit
12cb61ce2d
1 changed files with 7 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'python3-trimesh'
|
||||
pkgname=python3-trimesh
|
||||
version=3.9.34
|
||||
version=3.10.7
|
||||
revision=1
|
||||
wrksrc="trimesh-${version}"
|
||||
build_style=python3-module
|
||||
|
@ -10,14 +10,13 @@ depends="python3-numpy python3-scipy python3-networkx python3-lxml
|
|||
python3-pyglet python3-shapely python3-rtree python3-Pillow python3-svg.path
|
||||
python3-jsonschema python3-psutil python3-chardet python3-sympy python3-msgpack
|
||||
python3-pycollada python3-requests"
|
||||
# unit tests fail on x86 https://github.com/mikedh/trimesh/issues/690
|
||||
checkdepends="$depends python3-pytest"
|
||||
short_desc="Python3 library for loading and using triangular meshes"
|
||||
maintainer="Karl Nilsson <karl.robert.nilsson@gmail.com>"
|
||||
license="MIT"
|
||||
homepage="https://trimsh.org/"
|
||||
distfiles="https://github.com/mikedh/trimesh/archive/${version}.tar.gz"
|
||||
checksum=713a959be0f93c049d0735f573b814cfa704c5bbfaf0c607facb61ede5a8ab2e
|
||||
checksum=e98fd2dff632729fc6fb963653b91d9f4a5a6a9a1f79493dd885e3e4d1f9c4da
|
||||
|
||||
post_install() {
|
||||
vlicense LICENSE.md
|
||||
|
@ -29,3 +28,8 @@ do_check() {
|
|||
vsed -i 's/coveralls//' setup.py
|
||||
python3 -m pytest
|
||||
}
|
||||
|
||||
# disable tests for i686
|
||||
if [ "$XBPS_WORDSIZE" -eq "32" ]; then
|
||||
make_check=no # https://github.com/mikedh/trimesh/issues/690;
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue