From 1a9cdc04c5a79e8ab4caa9e28c8cd45b8f9fbc29 Mon Sep 17 00:00:00 2001 From: Alexander Piskun Date: Mon, 28 Feb 2022 03:04:49 +0200 Subject: [PATCH] [ci skip] fix Readme --- README.md | 2 +- requirements.txt | 1 + setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d9fe097d..735ffde1 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ A HEIF/HEIC/AVIF add-on for Pillow using the `libheif` library via `CFFI`. Binary wheels for Python 3.6-3.10. Linux(+Alpine)/macOS/Windows - i686, x86_64 and aarch64. -#### **_Version 0.1.9 will be last to support Python 3.6._** +#### **_Versions 0.2.x will be last to support Python 3.6._** Mostly based on David Poirier's [pyheif](https://github.com/carsales/pyheif). The idea for this plugin came from Christian Bianciotto's [pyheif-pillow-opener](https://github.com/ciotto/pyheif-pillow-opener). diff --git a/requirements.txt b/requirements.txt index d21db220..6ad6f3d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ +cffi>=1.15.0 Pillow>=8.0.1 diff --git a/setup.py b/setup.py index 41069621..c7142eb0 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def get_version(): name="pillow_heif", version=get_version(), packages=["pillow_heif"], - install_requires=["cffi>=1.15.0", *install_requirements], + install_requires=install_requirements, setup_requires=["cffi>=1.15.0", "setuptools>=41.2.0"], cffi_modules=["libheif/build.py:ffi"], author="Alexander Piskun",