summaryrefslogtreecommitdiff
path: root/math/py-numpy-stl (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-04-07One more small cleanup, forgotten yesterday.Mathieu Arnold1-1/+0
Reported by: lwhsu
2021-04-06Remove # $FreeBSD$ from Makefiles.Mathieu Arnold1-1/+0
2020-12-24Relax hardcoded paths to fix build with Python 3.8.7Kai Knoblich1-1/+1
Since r558913 Python 3.8 incorporates BPO-42604 [1] which changed the shared libs naming scheme. This means "EXT_SUFFIX" is now derived from SOABI and yields with Python 3.8 to ".cpython-38.so" instead of ".so". The affected ports strip the libaries in the "post-install" target via hardcoded path(s) and the build fails at the end because the new extension is not expected at this place. Remedy the issue by adding wildcards to these paths. This should also prepare the ports for future Python releases, which will use the new shared libs naming scheme. [1] https://bugs.python.org/issue42604 PR: 252057 Reported by: John Kennedy Reviewed by: fluffy, koobs Approved by: koobs (python)
2020-10-12- Update to 2.11.3Diane Bruce2-4/+4
fixed #146. worked around numpy bug when reading from BytesIO See https://github.com/WoLpH/numpy-stl/issues/146 Reported by: portscout
2020-09-20Simple library to make working with STL filesDiane Bruce3-0/+36
(and 3D objects in general) fast and easy. Due to all operations heavily relying on numpy this is one of the fastest STL editing libraries for Python available. Prerequisite for Cura update submitted by greg@unrelenting.technology With some changes. Rest of updates will come in separate commits. PR: ports/249468 Submitted by: greg@unrelenting.technology