From 2a528e23bf1af59e2536808c8aec01ef37573ade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 11 Nov 2021 11:45:39 +0100 Subject: [PATCH] python: doc++, updated credits & changelog. --- doc/python/pages/changelog.rst | 1 + doc/python/pages/credits.rst | 3 ++- src/python/setup.py.cmake | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/python/pages/changelog.rst b/doc/python/pages/changelog.rst index 8b40523..a43c71e 100644 --- a/doc/python/pages/changelog.rst +++ b/doc/python/pages/changelog.rst @@ -82,6 +82,7 @@ Changelog :ref:`platform.glfw.Application.exit_event` - Exposed :ref:`Color3.red()` and other convenience constructors (see :gh:`mosra/magnum-bindings#12`) +- Fixed issues with an in-source build (see :gh:`mosra/magnum-bindings#13`) `2020.06`_ ========== diff --git a/doc/python/pages/credits.rst b/doc/python/pages/credits.rst index e20ab7d..bf90a88 100644 --- a/doc/python/pages/credits.rst +++ b/doc/python/pages/credits.rst @@ -70,8 +70,9 @@ involved! `Let us know! `_ - **Aaron Gokaslan** (:gh:`Skylion007`) --- minor performance and - documentation fixes + documentation fixes, expanding :ref:`Color3` / :ref:`Color4` bindings - **Cameron Egbert** (:gh:`cegbertOculus`) --- initial Windows port +- **James Murphy** (:gh:`mCodingLLC`) --- buildsystem fixes - **John Laxson** (:gh:`jlaxson`) --- Homebrew package improvements - **Vladimir Gamalyan** (:gh:`vladimirgamalyan`) --- expanding :ref:`gl.Renderer` bindings diff --git a/src/python/setup.py.cmake b/src/python/setup.py.cmake index 2e79bca..e2fc984 100644 --- a/src/python/setup.py.cmake +++ b/src/python/setup.py.cmake @@ -60,6 +60,7 @@ if '${MAGNUM_BUILD_STATIC}' != 'ON': class TheExtensionIsAlreadyBuiltWhyThisHasToBeSoDamnComplicated(build_ext): def run(self): for ext in self.extensions: + # SameFileError can happen in case of an in-source CMake build try: shutil.copyfile(extension_paths[ext.name], self.get_ext_fullpath(ext.name)) except shutil.SameFileError: