Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Relax hardcoded paths to fix build with Python 3.8.7 | Kai Knoblich | 2020-12-24 | 1 | -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) Notes: svn path=/head/; revision=559094 | ||||
* | - Update to 2.11.3 | Diane Bruce | 2020-10-12 | 2 | -4/+4 |
| | | | | | | | | | | fixed #146. worked around numpy bug when reading from BytesIO See https://github.com/WoLpH/numpy-stl/issues/146 Reported by: portscout Notes: svn path=/head/; revision=552148 | ||||
* | Simple library to make working with STL files | Diane Bruce | 2020-09-20 | 3 | -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 Notes: svn path=/head/; revision=549403 |