Skip to content

Commit

Permalink
bump version to 0.7.10
Browse files Browse the repository at this point in the history
  • Loading branch information
hanjinliu committed Mar 14, 2024
1 parent 256c77b commit 8b25094
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion magicclass/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.7.10.dev0"
__version__ = "0.7.10"

from .core import (
magicclass,
Expand Down
2 changes: 1 addition & 1 deletion magicclass/_gui/toolbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self, title: str, parent=None):
self._tab.setContentsMargins(0, 0, 0, 0)
self._tab.setTabBarAutoHide(True)
self._tab.setStyleSheet(
"QTabWidget {" " margin: 0px, 0px, 0px, 0px;" " padding: 0px;}"
"QTabWidget { margin: 0px, 0px, 0px, 0px; padding: 0px;}"
)
self.addWidget(self._tab)
self.installEventFilter(self._palette_event_filter)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ path = "magicclass/__init__.py"

[tool.hatch.build.targets.sdist]
include = ["/magicclass"]
exclude = ["/examples", "/rst", "/tests", "setup.py"]
exclude = ["/examples", "/docs", "/tests", "setup.py"]

[tool.hatch.build.targets.sdist.force-include]
"magicclass/core.pyi" = "magicclass/core.pyi"
"magicclass/testing" = "magicclass/testing"

[tool.hatch.build.targets.wheel]
include = ["/magicclass"]
exclude = ["/examples", "/rst", "/tests", "setup.py"]
exclude = ["/examples", "/docs", "/tests", "setup.py"]

[tool.hatch.build.targets.wheel.force-include]
"magicclass/core.pyi" = "magicclass/core.pyi"
Expand Down

0 comments on commit 8b25094

Please sign in to comment.