-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop python versions before 3.10 for security and type hint reasons
There are security implications with python version 3.7 and even later ones and there is new type hint annotation functionality only available on versions after Python 3.10 while the last release will remain compatible with all previous versions for a while.
- Loading branch information
Showing
3 changed files
with
5 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# minimal | ||
Pillow==9.3.0; python_version >= '3.7' and python_version < '3.12' | ||
Pillow==9.3.0; python_version < '3.12' | ||
Pillow==10.3.0; python_version >= '3.12' |