Skip to content
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

pillow v8.2.0 #93

Merged
merged 2 commits into from
May 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 15 additions & 0 deletions recipe/disable_win32_fileio.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
--- setup.py.orig 2021-05-05 12:35:30.000000000 -0600
+++ setup.py 2021-05-05 12:38:18.000000000 -0600
@@ -810,12 +810,6 @@
if feature.tiff:
libs.append(feature.tiff)
defs.append(("HAVE_LIBTIFF", None))
- if sys.platform == "win32":
- # This define needs to be defined if-and-only-if it was defined
- # when compiling LibTIFF. LibTIFF doesn't expose it in `tiffconf.h`,
- # so we have to guess; by default it is defined in all Windows builds.
- # See #4237, #5243, #5359 for more information.
- defs.append(("USE_WIN32_FILEIO", None))
if feature.xcb:
libs.append(feature.xcb)
defs.append(("HAVE_XCB", None))
6 changes: 4 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{% set version = "8.1.2" %}
{% set version = "8.2.0" %}

package:
name: pillow
version: {{ version }}

source:
url: https://pypi.io/packages/source/P/Pillow/Pillow-{{ version }}.tar.gz
sha256: b07c660e014852d98a00a91adfbe25033898a9d90a8f39beb2437d22a203fc44
sha256: a787ab10d7bb5494e5f76536ac460741788f1fbce851068d73a87ca7c35fc3e1
patches:
- disable_win32_fileio.patch

build:
number: 0
Expand Down