From dc90a7631b3906a73045cfee8a19795fbfc8c7b2 Mon Sep 17 00:00:00 2001 From: Benjamin Nour <ben.nour@live.com.au> Date: Tue, 1 Oct 2024 23:30:13 +1000 Subject: [PATCH] new version 0.1.1 --- pyproject.toml | 13 ++++--------- tab_pal/__init__.py | 2 +- tab_pal/tab_pal.py | 2 +- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dd94f33..a96c6a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,14 +4,10 @@ build-backend = "setuptools.build_meta" [project] name = "tab-pal" -version = "0.1.0" +version = "0.1.1" description = "A TUI for adding and editing Tableau custom colour palettes." -authors = [ - { name = "Ben Nour", email = "hello@ben-nour.com" } -] -dependencies = [ - "textual>=0.56.4" -] +authors = [{ name = "Ben Nour", email = "hello@ben-nour.com" }] +dependencies = ["textual==0.81.0"] classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", @@ -19,7 +15,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12" + "Programming Language :: Python :: 3.12", ] license = { file = "LICENSE" } readme = "README.md" @@ -36,4 +32,3 @@ package-data = { "tab_pal" = ["tabpal.tcss"] } [project.scripts] tab-pal = "tab_pal.tab_pal:main" - diff --git a/tab_pal/__init__.py b/tab_pal/__init__.py index e1c150d..db32564 100644 --- a/tab_pal/__init__.py +++ b/tab_pal/__init__.py @@ -2,4 +2,4 @@ __author__ = """Ben Nour""" __email__ = "hello@ben-nour.com" -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/tab_pal/tab_pal.py b/tab_pal/tab_pal.py index f96a9a0..e86504f 100644 --- a/tab_pal/tab_pal.py +++ b/tab_pal/tab_pal.py @@ -143,7 +143,7 @@ class TabPal(App): """A TUI app for adding and editing colour palettes to Tableau.""" CSS_PATH = "tabpal.tcss" - SCREENS = {"configuration": Configuration(), "add_palette": AddPalette()} + SCREENS = {"configuration": Configuration, "add_palette": AddPalette} BINDINGS = [ ("a", "add_palette", "Add palette"), ("d", "delete", "Delete palette or colour"),