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

Demonstrated change #8094

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,13 @@ Tests/images/sunraster

# pyinstaller
*.spec

# Virtual Environment
venv/

# Depedancies
depends/*.tar.gz
depends/libraqm*/
winbuild/depends/

*.whl
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog (Pillow)
==================


11.0.0 (unreleased)

- Support tiff 16bit tiff #1888
[mocomakers]

10.4.0 (unreleased)
-------------------

Expand Down
4 changes: 4 additions & 0 deletions src/PIL/Image.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/PIL/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Master version for Pillow
from __future__ import annotations

__version__ = "10.4.0.dev0"
__version__ = "11.0.0.dev0"