tksheet 6.0.4__tar.gz → 6.0.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tksheet
3
- Version: 6.0.4
3
+ Version: 6.0.5
4
4
  Summary: Tkinter table / sheet widget
5
5
  Home-page: https://github.com/ragardner/tksheet
6
- Download-URL: https://github.com/ragardner/tksheet/archive/6.0.4.tar.gz
6
+ Download-URL: https://github.com/ragardner/tksheet/archive/6.0.5.tar.gz
7
7
  Author: ragardner
8
8
  Author-email: github@ragardner.simplelogin.com
9
9
  License: MIT
@@ -39,6 +39,9 @@ pip install tksheet --upgrade
39
39
  - [Suggestions](https://github.com/ragardner/tksheet/wiki#enhancements-or-suggestions)
40
40
  - This library is maintained with the help of **[others](https://github.com/ragardner/tksheet/graphs/contributors)**. If you would like to contribute please read [this help section](https://github.com/ragardner/tksheet/wiki#contributing).
41
41
 
42
+ ### **NOTICE:**
43
+ With versions `5.5.0`+ if you use `extra_bindings()` with `"edit_cell"`/`"end_edit_cell"` you must provide a return value in your bound function to set the cell value to. To disable this behavior in these versions use option `edit_cell_validation = False` in your `Sheet()` initialisation arguments or use `set_options(edit_cell_validation = False)`. [See here](https://github.com/ragardner/tksheet/issues/170#issuecomment-1522236289) for more information on this issue and if you need to *very* directly set the cell data.
44
+
42
45
  ## **Features**
43
46
  ----
44
47
  - Display and modify tabular data
@@ -21,6 +21,9 @@ pip install tksheet --upgrade
21
21
  - [Suggestions](https://github.com/ragardner/tksheet/wiki#enhancements-or-suggestions)
22
22
  - This library is maintained with the help of **[others](https://github.com/ragardner/tksheet/graphs/contributors)**. If you would like to contribute please read [this help section](https://github.com/ragardner/tksheet/wiki#contributing).
23
23
 
24
+ ### **NOTICE:**
25
+ With versions `5.5.0`+ if you use `extra_bindings()` with `"edit_cell"`/`"end_edit_cell"` you must provide a return value in your bound function to set the cell value to. To disable this behavior in these versions use option `edit_cell_validation = False` in your `Sheet()` initialisation arguments or use `set_options(edit_cell_validation = False)`. [See here](https://github.com/ragardner/tksheet/issues/170#issuecomment-1522236289) for more information on this issue and if you need to *very* directly set the cell data.
26
+
24
27
  ## **Features**
25
28
  ----
26
29
  - Display and modify tabular data
@@ -1,4 +1,4 @@
1
- from setuptools import setup, find_packages
1
+ from setuptools import setup
2
2
  from os import path
3
3
 
4
4
  this_directory = path.abspath(path.dirname(__file__))
@@ -8,7 +8,7 @@ with open(path.join(this_directory, 'README.md'), encoding = 'utf-8') as f:
8
8
  setup(
9
9
  name = 'tksheet',
10
10
  packages = ['tksheet'],
11
- version = '6.0.4',
11
+ version = '6.0.5',
12
12
  python_requires = '>=3.6',
13
13
  license = 'MIT',
14
14
  description = 'Tkinter table / sheet widget',
@@ -17,7 +17,7 @@ setup(
17
17
  author = 'ragardner',
18
18
  author_email = 'github@ragardner.simplelogin.com',
19
19
  url = 'https://github.com/ragardner/tksheet',
20
- download_url = 'https://github.com/ragardner/tksheet/archive/6.0.4.tar.gz',
20
+ download_url = 'https://github.com/ragardner/tksheet/archive/6.0.5.tar.gz',
21
21
  keywords = ['tkinter', 'table', 'widget', 'sheet', 'grid', 'tk'],
22
22
  install_requires = [],
23
23
  classifiers = [
@@ -1,8 +1,8 @@
1
- from ._tksheet_column_headers import ColumnHeaders
2
- from ._tksheet_main_table import MainTable
3
- from ._tksheet_other_classes import TextEditor_, TextEditor
4
- from ._tksheet_row_index import RowIndex
5
- from ._tksheet_top_left_rectangle import TopLeftRectangle
6
- from ._tksheet_vars import *
7
- from ._tksheet_formatters import *
1
+ from ._tksheet_column_headers import ColumnHeaders
2
+ from ._tksheet_main_table import MainTable
3
+ from ._tksheet_other_classes import TextEditor_, TextEditor
4
+ from ._tksheet_row_index import RowIndex
5
+ from ._tksheet_top_left_rectangle import TopLeftRectangle
6
+ from ._tksheet_vars import *
7
+ from ._tksheet_formatters import *
8
8
  from ._tksheet import Sheet