4 Commits

Author SHA1 Message Date
a7c0fc2a3c Bump to 4.0.3 2022-05-23 11:01:38 +02:00
9be2a76b25 set minimum python version to 3.7 2022-05-23 11:01:29 +02:00
b1ac3b6d45 Merge pull request #102 from demberto/issue101-fix
Fixes #101
2022-05-23 10:42:32 +02:00
a6b563abb1 Fixes #101 2022-05-23 11:21:09 +05:30
5 changed files with 11 additions and 4 deletions

View File

View File

@ -1,4 +1,4 @@
__version__ = "4.0.2" __version__ = "4.0.3"
import os import os
import sys import sys

View File

@ -2,7 +2,12 @@ import tkinter
import tkinter.ttk as ttk import tkinter.ttk as ttk
import copy import copy
import re import re
from typing import Callable, Union, TypedDict from typing import Callable, Union
try:
from typing import TypedDict
except ImportError:
from typing_extensions import TypedDict
from ..windows.ctk_tk import CTk from ..windows.ctk_tk import CTk
from ..windows.ctk_toplevel import CTkToplevel from ..windows.ctk_toplevel import CTkToplevel

View File

@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
github_url = "https://github.com/TomSchimansky/CustomTkinter" github_url = "https://github.com/TomSchimansky/CustomTkinter"
[tool.tbump.version] [tool.tbump.version]
current = "4.0.2" current = "4.0.3"
# Example of a semver regexp. # Example of a semver regexp.
# Make sure this matches current_version before # Make sure this matches current_version before

View File

@ -1,6 +1,6 @@
[metadata] [metadata]
name = customtkinter name = customtkinter
version = 4.0.2 version = 4.0.3
description = Create modern looking GUIs with Python description = Create modern looking GUIs with Python
long_description = file: README.md long_description = file: README.md
long_description_content_type = text/markdown long_description_content_type = text/markdown
@ -14,10 +14,12 @@ classifiers =
Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3 :: Only
[options] [options]
python_requires = >=3.7
packages = packages =
customtkinter customtkinter
customtkinter.widgets customtkinter.widgets
customtkinter.windows customtkinter.windows
install_requires = install_requires =
darkdetect darkdetect
typing_extensions; python_version<="3.7"
include_package_data = True include_package_data = True