Demonstrated change

This commit is contained in:
Matthew Zamora 2024-05-31 03:52:40 -04:00
parent c7574392b0
commit 88cc8fd4af
4 changed files with 21 additions and 1 deletions

10
.gitignore vendored
View File

@ -92,3 +92,13 @@ Tests/images/sunraster
# pyinstaller # pyinstaller
*.spec *.spec
# Virtual Environment
venv/
# Depedancies
depends/*.tar.gz
depends/libraqm*/
winbuild/depends/
*.whl

View File

@ -2,6 +2,12 @@
Changelog (Pillow) Changelog (Pillow)
================== ==================
11.0.0 (unreleased)
- Support tiff 16bit tiff #1888
[mocomakers]
10.4.0 (unreleased) 10.4.0 (unreleased)
------------------- -------------------

View File

@ -2902,6 +2902,10 @@ class Image:
raise ImportError(msg) raise ImportError(msg)
return ImageQt.toqpixmap(self) return ImageQt.toqpixmap(self)
# TODO: REMOVE THIS
def simpleTest(self):
# Demonstrate a quick change
print("Test has passed")
# -------------------------------------------------------------------- # --------------------------------------------------------------------
# Abstract handlers. # Abstract handlers.

View File

@ -1,4 +1,4 @@
# Master version for Pillow # Master version for Pillow
from __future__ import annotations from __future__ import annotations
__version__ = "10.4.0.dev0" __version__ = "11.0.0.dev0"