From 88cc8fd4afd81848fcaff26afc05e7e8a00364b4 Mon Sep 17 00:00:00 2001 From: Matthew Zamora Date: Fri, 31 May 2024 03:52:40 -0400 Subject: [PATCH] Demonstrated change --- .gitignore | 10 ++++++++++ CHANGES.rst | 6 ++++++ src/PIL/Image.py | 4 ++++ src/PIL/_version.py | 2 +- 4 files changed, 21 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1dd6c9175..916932d29 100644 --- a/.gitignore +++ b/.gitignore @@ -92,3 +92,13 @@ Tests/images/sunraster # pyinstaller *.spec + +# Virtual Environment +venv/ + +# Depedancies +depends/*.tar.gz +depends/libraqm*/ +winbuild/depends/ + +*.whl \ No newline at end of file diff --git a/CHANGES.rst b/CHANGES.rst index dc4016d76..036a0f41a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,12 @@ Changelog (Pillow) ================== + +11.0.0 (unreleased) + +- Support tiff 16bit tiff #1888 + [mocomakers] + 10.4.0 (unreleased) ------------------- diff --git a/src/PIL/Image.py b/src/PIL/Image.py index 958b95e3b..c7a44875c 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -2902,6 +2902,10 @@ class Image: raise ImportError(msg) return ImageQt.toqpixmap(self) + # TODO: REMOVE THIS + def simpleTest(self): + # Demonstrate a quick change + print("Test has passed") # -------------------------------------------------------------------- # Abstract handlers. diff --git a/src/PIL/_version.py b/src/PIL/_version.py index 12d7412ea..c4a72ad7e 100644 --- a/src/PIL/_version.py +++ b/src/PIL/_version.py @@ -1,4 +1,4 @@ # Master version for Pillow from __future__ import annotations -__version__ = "10.4.0.dev0" +__version__ = "11.0.0.dev0"