-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
45 additions
and
42 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
setup( | ||
name = 'tksheet', | ||
packages = ['tksheet'], | ||
version = '6.1.9', | ||
version = '6.2.0', | ||
python_requires = '>=3.6', | ||
license = 'MIT', | ||
description = 'Tkinter table / sheet widget', | ||
|
@@ -17,7 +17,7 @@ | |
author = 'ragardner', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/ragardner/tksheet', | ||
download_url = 'https://github.com/ragardner/tksheet/archive/6.1.9.tar.gz', | ||
download_url = 'https://github.com/ragardner/tksheet/archive/6.2.0.tar.gz', | ||
keywords = ['tkinter', 'table', 'widget', 'sheet', 'grid', 'tk'], | ||
install_requires = [], | ||
classifiers = [ | ||
|
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
9cd4193
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Starting with Python 3.7, if you put a
from __future__ import annotations
statement on the top of the file, these new kinds of type hints will work as they would on Python >= 3.99cd4193
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks very much for pointing this out! It seems as though
|
instead ofUnion
also works for Python 3.7 withfrom __future__ import annotations
, very helpful