mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-08-04 20:40:11 +03:00
Demonstrated change
This commit is contained in:
parent
c7574392b0
commit
88cc8fd4af
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -92,3 +92,13 @@ Tests/images/sunraster
|
|||
|
||||
# pyinstaller
|
||||
*.spec
|
||||
|
||||
# Virtual Environment
|
||||
venv/
|
||||
|
||||
# Depedancies
|
||||
depends/*.tar.gz
|
||||
depends/libraqm*/
|
||||
winbuild/depends/
|
||||
|
||||
*.whl
|
|
@ -2,6 +2,12 @@
|
|||
Changelog (Pillow)
|
||||
==================
|
||||
|
||||
|
||||
11.0.0 (unreleased)
|
||||
|
||||
- Support tiff 16bit tiff #1888
|
||||
[mocomakers]
|
||||
|
||||
10.4.0 (unreleased)
|
||||
-------------------
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Master version for Pillow
|
||||
from __future__ import annotations
|
||||
|
||||
__version__ = "10.4.0.dev0"
|
||||
__version__ = "11.0.0.dev0"
|
||||
|
|
Loading…
Reference in New Issue
Block a user