@@ -275,19 +275,26 @@ compiler, see e.g.
275275https://packaging.python.org/guides/packaging-binary-extensions/#setting-up-a-build-environment-on-windows
276276for how to set up a build environment.
277277
278- Since there is no canonical Windows package manager, the methods for building
279- FreeType, zlib, and libpng from source code are documented as a build script
280- at `matplotlib-winbuild <https://github.com/jbmohler/matplotlib-winbuild >`_.
278+ The Windows OS has no canonical package manager to provide easy inclusion of the dependencies that are
279+ required for the Matplotlib build. However, documentation and scripts that build the FreeType, zlib,
280+ and libpng dependencies from source code and integrate them into the Matplotlib build can be found
281+ at `matplotlib-winbuild <https://github.com/MaxvandenBoom/matplotlib-winbuild >`_.
281282
282283There are a few possibilities to build Matplotlib on Windows:
283284
284- * Wheels via `matplotlib-winbuild <https://github.com/jbmohler /matplotlib-winbuild >`_
285+ * Wheels via `matplotlib-winbuild <https://github.com/MaxvandenBoom /matplotlib-winbuild >`_
285286* Wheels by using conda packages (see below)
286287* Conda packages (see below)
287288
288289If you are building your own Matplotlib wheels (or sdists), note that any DLLs
289290that you copy into the source tree will be packaged too.
290291
292+ ..note ::
293+
294+ The current master branch (which will become matplotlib 3.3) includes its own copy of Qhull; and by default downloads and builds
295+ its own copy of FreeType. The only non-python dependency that you would require is Visual Studio 2015 or later.
296+ See https://matplotlib.org/devdocs/users/installing.html#building-on-windows for the instructions on installing from master).
297+
291298Wheel builds using conda packages
292299^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
293300