diff --git a/.gitignore b/.gitignore index 1dd6c917524..916932d291a 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 dc4016d76f6..036a0f41a0d 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 958b95e3b0f..c7a44875cbf 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -2902,6 +2902,10 @@ def toqpixmap(self): 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 12d7412eaa1..c4a72ad7ede 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"