Skip to content

Commit

Permalink
Merge pull request #178 from marcelm/metapackage
Browse files Browse the repository at this point in the history
Split into matplotlib and matplotlib-base
  • Loading branch information
ocefpaf authored Oct 3, 2018
2 parents 8528e3c + b22955f commit 90e1c98
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 46 deletions.
File renamed without changes.
File renamed without changes.
99 changes: 53 additions & 46 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,58 +15,65 @@ source:
- setupext.patch # [win]

build:
number: 1
number: 2
skip: true # [py<35]

requirements:
build:
- pkg-config # [not win]
- {{ compiler('c') }}
- {{ compiler('cxx') }}
host:
- python
- setuptools
- numpy >=1.10
- python-dateutil
- freetype
- msinttypes # [win]
- cycler >=0.10
- nose
- pyparsing
- libpng
- zlib # [win]
- pyqt # [not osx]
- tk # [linux]
- icu # [linux]
run:
- python
- setuptools
- {{ pin_compatible('numpy') }}
- cycler >=0.10
- python-dateutil
- freetype
- pyparsing
- libpng
- {{ pin_subpackage('matplotlib-base', exact=True) }}
- pyqt # [not osx]
- tk # [linux]
- icu # [linux]
- tornado
- kiwisolver

test:
imports:
- matplotlib
- matplotlib.pyplot
- matplotlib._image
- matplotlib._path
- matplotlib._png
- matplotlib._tri
- matplotlib.backends._backend_agg
- matplotlib.ft2font
- matplotlib.ttconv
- matplotlib.backends._tkagg # [not win]
- mpl_toolkits
- pylab
outputs:
- name: matplotlib-base
script: install.sh # [not win]
script: install.bat # [win]
requirements:
build:
- pkg-config # [not win]
- {{ compiler('c') }}
- {{ compiler('cxx') }}
host:
- python
- setuptools
- numpy >=1.10
- python-dateutil
- freetype
- msinttypes # [win]
- cycler >=0.10
- nose
- pyparsing
- libpng
- zlib # [win]
- tk # [linux]
- icu # [linux]
run:
- python
- setuptools
- {{ pin_compatible('numpy') }}
- cycler >=0.10
- python-dateutil
- freetype
- pyparsing
- libpng
- tk # [linux]
- icu # [linux]
- tornado
- kiwisolver

test:
imports:
- matplotlib
- matplotlib.pyplot
- matplotlib._image
- matplotlib._path
- matplotlib._png
- matplotlib._tri
- matplotlib.backends._backend_agg
- matplotlib.ft2font
- matplotlib.ttconv
- matplotlib.backends._tkagg # [not win]
- mpl_toolkits
- pylab

about:
home: http://matplotlib.org/
Expand Down

0 comments on commit 90e1c98

Please sign in to comment.