Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dedc5bd

Browse files
committed
Dynamically generate pyplot functions.
1 parent 874116f commit dedc5bd

File tree

5 files changed

+129
-2134
lines changed

5 files changed

+129
-2134
lines changed

INSTALL.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ Matplotlib requires a large number of dependencies:
179179
* `six <https://pypi.python.org/pypi/six>`_
180180
* `backports.functools_lru_cache <https://pypi.python.org/pypi/backports.functools_lru_cache>`_
181181
(for Python 2.7 only)
182+
* `funcsigs <https://pypi.python.org/pypi/funcsigs>`_ (for Python 2.7 only)
182183
* `subprocess32 <https://pypi.python.org/pypi/subprocess32/>`_ (for Python
183184
2.7 only, on Linux and macOS only)
184185

@@ -324,7 +325,7 @@ without fiddling with environment variables::
324325
# this package is only available in the conda-forge channel
325326
conda install -c conda-forge msinttypes
326327
# for Python 2.7
327-
conda install -c conda-forge backports.functools_lru_cache
328+
conda install -c conda-forge backports.functools_lru_cache funcsigs
328329

329330
# copy the libs which have "wrong" names
330331
set LIBRARY_LIB=%CONDA_DEFAULT_ENV%\Library\lib

build_alllocal.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:: # this package is only available in the conda-forge channel
88
:: conda install -c conda-forge msinttypes
99
:: if you build on py2.7:
10-
:: conda install -c conda-forge backports.functools_lru_cache
10+
:: conda install -c conda-forge backports.functools_lru_cache funcsigs
1111

1212
set TARGET=bdist_wheel
1313
IF [%1]==[] (

0 commit comments

Comments
 (0)