File tree Expand file tree Collapse file tree 7 files changed +132
-2138
lines changed Expand file tree Collapse file tree 7 files changed +132
-2138
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ install:
90
90
pip setuptools numpy mock "pandas<0.21.0" sphinx tornado
91
91
- activate test-environment
92
92
- echo %PYTHON_VERSION% %TARGET_ARCH%
93
- - if %PYTHON_VERSION% == 2.7 conda install -q backports.functools_lru_cache
94
93
# pytest-cov>=2.3.1 due to https://github.com/pytest-dev/pytest-cov/issues/124
95
94
- pip install -q pytest "pytest-cov>=2.3.1" pytest-rerunfailures pytest-timeout pytest-xdist
96
95
@@ -118,7 +117,7 @@ install:
118
117
119
118
test_script :
120
119
# Now build the thing..
121
- - ' %CMD_IN_ENV% pip install --no-deps - ve .'
120
+ - ' %CMD_IN_ENV% pip install -ve .'
122
121
# these should show no z, png, or freetype dll...
123
122
- set "DUMPBIN=%VS140COMNTOOLS%\..\..\VC\bin\dumpbin.exe"
124
123
- ' "%DUMPBIN%" /DEPENDENTS lib\matplotlib\ft2font*.pyd | findstr freetype.*.dll && exit /b 1 || exit /b 0'
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ Matplotlib requires a large number of dependencies:
185
185
* `six <https://pypi.python.org/pypi/six >`_
186
186
* `backports.functools_lru_cache <https://pypi.python.org/pypi/backports.functools_lru_cache >`_
187
187
(for Python 2.7 only)
188
+ * `funcsigs <https://pypi.python.org/pypi/funcsigs >`_ (for Python 2.7 only)
188
189
* `subprocess32 <https://pypi.python.org/pypi/subprocess32/ >`_ (for Python
189
190
2.7 only, on Linux and macOS only)
190
191
@@ -330,7 +331,7 @@ without fiddling with environment variables::
330
331
# this package is only available in the conda-forge channel
331
332
conda install -c conda-forge msinttypes
332
333
# for Python 2.7
333
- conda install -c conda-forge backports.functools_lru_cache
334
+ conda install -c conda-forge backports.functools_lru_cache funcsigs
334
335
335
336
# copy the libs which have "wrong" names
336
337
set LIBRARY_LIB=%CONDA_DEFAULT_ENV%\Library\lib
Original file line number Diff line number Diff line change 7
7
:: # this package is only available in the conda-forge channel
8
8
:: conda install -c conda-forge msinttypes
9
9
:: 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
11
11
12
12
set TARGET = bdist_wheel
13
13
IF [%1 ]== [] (
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ requirements:
40
40
- pyqt # [not osx]
41
41
- tk 8.5* # [linux]
42
42
- backports.functools_lru_cache # [py2k]
43
+ - funcsigs # [py2k]
43
44
44
45
run :
45
46
- python
@@ -55,6 +56,7 @@ requirements:
55
56
- pyqt # [not osx]
56
57
- tk 8.5* # [linux and win]
57
58
- backports.functools_lru_cache # [py2k]
59
+ - funcsigs # [py2k]
58
60
59
61
test :
60
62
imports :
You can’t perform that action at this time.
0 commit comments