Skip to content

Commit 964aa69

Browse files
committed
Update release script
1 parent f28d73b commit 964aa69

7 files changed

Lines changed: 806 additions & 353 deletions

File tree

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,13 @@ deploy-build-only:
6363
python -m build
6464

6565
deploy-test:
66+
pip install build twine
6667
make deploy-build-only
6768
python -m twine upload --repository testpypi dist/* --verbose
6869
@echo "[TRY] task install test"
6970

7071
deploy-main:
72+
pip install build twine
7173
make deploy-build-only
7274
python -m twine upload dist/* --verbose
7375

TkEasyGUI/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pylint: disable=line-too-long
22
"""
3-
# TkEasyGUI version 1.0.40
3+
# TkEasyGUI version 1.0.41
44
55
audo generated from [pyproject.toml](https://github.com/kujirahand/tkeasygui-python/blob/main/pyproject.toml) by update_version.py
66
"""
7-
__version__ = "1.0.40"
7+
__version__ = "1.0.41"

docs/TkEasyGUI/dialogs-py.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,16 +87,16 @@ def ask_yes_no(message: str, title: str = "Question") -> bool:
8787

8888
Cast a value to a type.
8989

90-
This returns the value unchanged. To the type checker this
91-
signals that the return value has the designated type, but at
92-
runtime we intentionally don't check anything (we want this
93-
to be as fast as possible).
90+
This returns the value unchanged. To the type checker this
91+
signals that the return value has the designated type, but at
92+
runtime we intentionally don't check anything (we want this
93+
to be as fast as possible).
9494

9595
```py
9696
def cast(typ, val):
9797
```
9898

99-
- [source](https://github.com/kujirahand/tkeasygui-python/blob/main/Users/kujirahand/.pyenv/versions/3.9.22/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/typing.py#L1375)
99+
- [source](https://github.com/kujirahand/tkeasygui-python/blob/main/Users/kujirahand/.pyenv/versions/3.13.9/lib/python3.13/typing.py#L2371)
100100

101101
## confirm
102102

docs/TkEasyGUI/utils-py.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,11 @@ TkEasyGUI utilities functions.
1313

1414
Image resize type.
1515

16-
### Methods of ImageResizeType
17-
18-
19-
20-
### ImageResizeType.name
21-
22-
The name of the Enum member.
23-
24-
### ImageResizeType.value
16+
```py
17+
class ImageResizeType(self, *args, **kwds):
18+
```
2519

26-
The value of the Enum member.
20+
- [source](https://github.com/kujirahand/tkeasygui-python/blob/main/Users/kujirahand/.pyenv/versions/3.13.9/lib/python3.13/enum.py#L1217)
2721

2822
## TkEasyError
2923

@@ -39,6 +33,11 @@ class TkEasyError(self, message="TkEasyError"):
3933

4034

4135

36+
### TkEasyError.add_note
37+
38+
Exception.add_note(note) --
39+
add a note to the exception
40+
4241
### TkEasyError.args
4342

4443
### TkEasyError.with_traceback

docs/TkEasyGUI/version-py.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Module TkEasyGUI.version
22

3-
# TkEasyGUI version 1.0.40
3+
# TkEasyGUI version 1.0.41
44

55
audo generated from [pyproject.toml](https://github.com/kujirahand/tkeasygui-python/blob/main/pyproject.toml) by update_version.py
66

0 commit comments

Comments
 (0)