GitXplorerGitXplorer
m

matplotlib-py3

public
3 stars
7 forks
0 issues

Commits

List of commits on branch master.
Unverified
32c57d7e5f79b298c1837c312a454a3100b949c9

Fix bug where empty markers were getting drawn anyway.

mmdboom committed 13 years ago
Unverified
31d10eff9a4570eb6c6c2d7bef6648f811025b0a

Merge remote-tracking branch 'upstream/master'

mmdboom committed 13 years ago
Unverified
cedc5ad52f6cd632eee64c2acbe01764a6934b56

Use integer division to make the tests pass on Python3

mmdboom committed 13 years ago
Unverified
6a735e2d8ba52ce72456fd1ab59f8d1e5d7eba26

Fix error reporting in png extension.

mmdboom committed 13 years ago
Unverified
927acf856bb321e22938846bb39f8b32d90172d4

Fix bbox_inches="tight" in Python 3.x

mmdboom committed 13 years ago
Unverified
a4f5fa52f05d76ffcef9f81c7e9611e7b8f4e652

Fix Python 3.x build -- Tkinter -> tkinter

mmdboom committed 13 years ago

README

The README file for this repository.

Building mpl on OSX has proven to be a nightmare because of all the different types of zlib, png and freetype that may be on your system. The recommended and supported way to build is to use the make.osx file in this directory. This script requires you to set a PREFIX environment variable where you want the install to go. It will fetch the dependencies from a remote server and install them into your PREFIX dir, and then build mpl against them. It should ignore any lib, png or freetype on your system

Example usage::

make -f make.osx PREFIX=/Users/jdhunter/dev PYVERSION=2.6
fetch deps mpl_install_std

Variables: PREFIX (required): where to install the dependencies PYVERSION (optional): which python version to use (default=python, e.g. PYVERSION=2.6 uses python2.6)

Targets:

clean: remove compiled files fetch: download dependencies deps: build all dependencies (zlib, png, freetype) mpl_build: compile matplotlib mpl_install: install matplotlib in $PREFIX/lib/pythonX.Y/site-packages mpl_install_std: install matplotlib in standard site-packages directory mpl_install_egg: install matplotlib as an egg mpl_install_develop: set up egg link to working directory (for developers) binaries: create the dmg file for distribution