Skip to content

Commit

Permalink
ci: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaokang2022 committed Jan 10, 2025
1 parent ff5403c commit 54ba520
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ opt = [
"darkdetect[macos-listener]==0.8.0; platform_system == 'Darwin'",
"pywinstyles==1.8; platform_system == 'Windows'",
"hPyT==1.3.7; platform_system == 'Windows'",
"win32material==1.0.6; platform_system == 'Windows'",
"win32material==1.0.7; platform_system == 'Windows'",
"pillow>=10.0.0",
]
ext = ["tkintertools-mpl", "tkintertools-3d", "tkintertools-media"]
Expand All @@ -38,7 +38,7 @@ all = [
"darkdetect[macos-listener]==0.8.0; platform_system == 'Darwin'",
"pywinstyles==1.8; platform_system == 'Windows'",
"hPyT==1.3.7; platform_system == 'Windows'",
"win32material==1.0.6; platform_system == 'Windows'",
"win32material==1.0.7; platform_system == 'Windows'",
"pillow>=10.0.0",
"tkintertools-mpl",
"tkintertools-3d",
Expand Down
2 changes: 1 addition & 1 deletion tkintertools/theme/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

try:
import win32material
except (ImportError, OSError): # NOTE: Temporary workaround (OSError), wait upstream to solve the problem
except ImportError:
win32material = None

_callback_events: dict[collections.abc.Callable[..., typing.Any], tuple] = {}
Expand Down

0 comments on commit 54ba520

Please sign in to comment.