File tree Expand file tree Collapse file tree 6 files changed +12
-60
lines changed Expand file tree Collapse file tree 6 files changed +12
-60
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ install:
52
52
# this is now the downloaded conda...
53
53
- conda info -a
54
54
# same things as in tools/conda_recipe
55
- - cmd : conda create -y -q -n test-environment python=%PYTHON_VERSION% pip setuptools numpy python-dateutil freetype=2.5 msinttypes pyparsing pytz tornado libpng zlib pyqt cycler nose mock
55
+ - cmd : conda create -y -q -n test-environment python=%PYTHON_VERSION% pip setuptools numpy python-dateutil freetype=2.5 msinttypes tk pyparsing pytz tornado libpng zlib pyqt cycler nose mock
56
56
- activate test-environment
57
57
# This is needed for the installer to find the dlls...
58
58
- set LIBRARY_LIB=%CONDA_DEFAULT_ENV%\Library\lib
Original file line number Diff line number Diff line change @@ -17,11 +17,3 @@ if errorlevel 1 exit 1
17
17
18
18
rd /s /q %SP_DIR% \dateutil
19
19
rd /s /q %SP_DIR% \numpy
20
-
21
- if " %ARCH% " == " 64" (
22
- set PLAT = win-amd64
23
- ) else (
24
- set PLAT = win32
25
- )
26
-
27
- :: copy C:\Tcl%ARCH%\bin\t*.dll %SP_DIR%\matplotlib-%PKG_VERSION%-py%PY_VER%-%PLAT%.egg\matplotlib\backends
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# stolen from https://github.com/conda/conda-recipes/tree/master/matplotlib
2
+ # selectors [py27] and comments need to be `# [selector] comment` not `[sel] # comment`
2
3
3
4
package :
4
5
name : matplotlib-test
5
6
version : 1.5.0.9
6
7
7
8
source :
8
9
path : ../../
9
-
10
+
10
11
patches :
11
- # off for now until there is a way to get the dlls tkagg...
12
- # - setupext.patch
13
- # - cfg.patch
12
+ # don't run nosetest
14
13
- cfg_notests.patch
14
+ # nake Qt4Agg the default backend
15
15
- cfg_qt4agg.patch [not osx]
16
16
- rctmp_pyside.patch [not osx]
17
+ # tk work on OSX
17
18
- osx-tk.patch [osx]
19
+ # dynamic version from git
18
20
- condaversion.patch
19
21
20
22
requirements :
@@ -33,7 +35,8 @@ requirements:
33
35
- msinttypes # this package is from the conda-forge channel!
34
36
- pyqt [not osx]
35
37
- cycler
36
- # - functools32 [py27] # this is actually not available
38
+ - tk
39
+ # - functools32 [py27] # this is currently not available
37
40
38
41
run :
39
42
- python
@@ -46,7 +49,8 @@ requirements:
46
49
- libpng [unix]
47
50
- pyqt [not osx]
48
51
- cycler
49
-
52
+ - tk
53
+
50
54
test :
51
55
requires :
52
56
- nose
Original file line number Diff line number Diff line change 12
12
import matplotlib .backends ._backend_agg
13
13
import matplotlib .ft2font
14
14
import matplotlib .ttconv
15
- # currently not working...
16
- #import matplotlib.backends._tkagg
15
+ import matplotlib .backends ._tkagg
17
16
18
17
import pylab
19
18
import mpl_toolkits
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments