8000 CI: add appveyor script to build Windows wheels by matthew-brett · Pull Request #6969 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

CI: add appveyor script to build Windows wheels #6969

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extensio 8000 n

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
BLD: also find newer freetype
  • Loading branch information
jankatins authored and matthew-brett committed Aug 25, 2016
commit 04c24cdd71a8d0f56b03cc4e4dda79ad01bf4742
5 changes: 4 additions & 1 deletion setupext.py
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,10 @@ def check(self):
return "Using local version for testing"

if sys.platform == 'win32':
check_include_file(get_include_dirs(), 'ft2build.h', 'freetype')
try:
check_include_file(get_include_dirs(), 'ft2build.h', 'freetype')
except CheckFailed:
check_include_file(get_include_dirs(), 'freetype2\\ft2build.h', 'freetype')
return 'Using unknown version found on system.'

status, output = getstatusoutput("freetype-config --ftversion")
Expand Down
0