Browse Source

python: doc++, updated credits & changelog.

pull/14/head
Vladimír Vondruš 5 years ago
parent
commit
2a528e23bf
  1. 1
      doc/python/pages/changelog.rst
  2. 3
      doc/python/pages/credits.rst
  3. 1
      src/python/setup.py.cmake

1
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`_
==========

3
doc/python/pages/credits.rst

@ -70,8 +70,9 @@ involved!
`Let us know! <https://magnum.graphics/contact/>`_
- **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

1
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:

Loading…
Cancel
Save