Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende committed Dec 4, 2022
1 parent b93198a commit 541470f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
import re
from pathlib import Path

from setuptools import setup

with open("README.md", "r") as file:
long_description = file.read()
with (Path(__file__).parent / "README.md").open() as file:
long_description = re.sub(
r"(?s)<picture>.*</picture>",
'<img alt="Cover image" src="https://raw.githubusercontent.com/rdbende/Sun-Valley-ttk-theme/master/assets/hero_light.png">',
file.read(),
)


setup(
name="sv_ttk",
version="2.3",
version="2.4",
license="MIT",
author="rdbende",
author_email="rdbende@gmail.com",
Expand Down
2 changes: 1 addition & 1 deletion theme/dark.tcl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source [file join [file dirname [info script]] sprites_dark.tcl]

namespace eval ttk::theme::sv_dark {
package provide ttk::theme::sv_dark 2.3
package provide ttk::theme::sv_dark 2.4

array set theme_colors {
-fg "#fafafa"
Expand Down
2 changes: 1 addition & 1 deletion theme/light.tcl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source [file join [file dirname [info script]] sprites_light.tcl]

namespace eval ttk::theme::sv_light {
package provide ttk::theme::sv_light 2.3
package provide ttk::theme::sv_light 2.4

array set theme_colors {
-fg "#1c1c1c"
Expand Down

0 comments on commit 541470f

Please sign in to comment.