mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-16 18:59:39 +08:00

Previously, Arcus, Savitar, and pynest2d were being build with a missing sip flag. This led to Cura getting `ValueError: PyCapsule_GetPointer called with incorrect name`, if those libraries were not imported (even if they were unused). This flag was added in the following commits: *83393f989c
*e9e530d963
*bd440b50ad
Since the issue seems to be gone now, the unused imports should be removed from Cura. All credits go to Rex Dieter for figuring that this missing flag was the issue. https://src.fedoraproject.org/rpms/libarcus/pull-request/1#request_diff CURA-8146
11 lines
294 B
Python
11 lines
294 B
Python
# Copyright (c) 2020 Jaime van Kessel, Ultimaker B.V.
|
|
# The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.
|
|
|
|
from . import PostProcessingPlugin
|
|
|
|
|
|
def getMetaData():
|
|
return {}
|
|
|
|
def register(app):
|
|
return {"extension": PostProcessingPlugin.PostProcessingPlugin()} |