FreeBSD Tips: Difference between revisions

Jump to navigation Jump to search
208 bytes removed ,  25 November 2023
no edit summary
No edit summary
No edit summary
Line 95: Line 95:


mozc 系での python3.10 の場合 AttributeError: module 'collections' has no attribute 'MutableSet' は、無理矢理FIX
mozc 系での python3.10 の場合 AttributeError: module 'collections' has no attribute 'MutableSet' は、無理矢理FIX
/usr/local/lib/python3.10/site-packages/gyp/common.py
<syntaxhighlight lang="diff" enclose="div">
-class OrderedSet(collections.MutableSet):
+class OrderedSet(collections.abc.MutableSet):
</syntaxhighlight>


/usr/ports/devel/py-gyp/files/patch-pylib_gyp_common.py を作成
/usr/ports/devel/py-gyp/files/patch-pylib_gyp_common.py を作成

Navigation menu