Skip to content

Commit dc90a76

Browse files
committed
new version 0.1.1
1 parent 8988553 commit dc90a76

3 files changed

Lines changed: 6 additions & 11 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,18 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "tab-pal"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "A TUI for adding and editing Tableau custom colour palettes."
9-
authors = [
10-
{ name = "Ben Nour", email = "hello@ben-nour.com" }
11-
]
12-
dependencies = [
13-
"textual>=0.56.4"
14-
]
9+
authors = [{ name = "Ben Nour", email = "hello@ben-nour.com" }]
10+
dependencies = ["textual==0.81.0"]
1511
classifiers = [
1612
"License :: OSI Approved :: MIT License",
1713
"Programming Language :: Python :: 3",
1814
"Programming Language :: Python :: 3.8",
1915
"Programming Language :: Python :: 3.9",
2016
"Programming Language :: Python :: 3.10",
2117
"Programming Language :: Python :: 3.11",
22-
"Programming Language :: Python :: 3.12"
18+
"Programming Language :: Python :: 3.12",
2319
]
2420
license = { file = "LICENSE" }
2521
readme = "README.md"
@@ -36,4 +32,3 @@ package-data = { "tab_pal" = ["tabpal.tcss"] }
3632

3733
[project.scripts]
3834
tab-pal = "tab_pal.tab_pal:main"
39-

tab_pal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Ben Nour"""
44
__email__ = "hello@ben-nour.com"
5-
__version__ = "0.1.0"
5+
__version__ = "0.1.1"

tab_pal/tab_pal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class TabPal(App):
143143
"""A TUI app for adding and editing colour palettes to Tableau."""
144144

145145
CSS_PATH = "tabpal.tcss"
146-
SCREENS = {"configuration": Configuration(), "add_palette": AddPalette()}
146+
SCREENS = {"configuration": Configuration, "add_palette": AddPalette}
147147
BINDINGS = [
148148
("a", "add_palette", "Add palette"),
149149
("d", "delete", "Delete palette or colour"),

0 commit comments

Comments
 (0)