From 92a25b42c85aa301175f2828324c28d2b89548a1 Mon Sep 17 00:00:00 2001 From: starfungus Date: Tue, 17 Dec 2024 20:29:31 -0400 Subject: [PATCH] pyproject and constant changes for 1.0 changed pyproject python dependency, added temporary colour constants for hacky fix for 1.0 compatibility --- hagadias/constants.py | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/hagadias/constants.py b/hagadias/constants.py index 4fc7748..4ad0267 100644 --- a/hagadias/constants.py +++ b/hagadias/constants.py @@ -203,6 +203,7 @@ "R": (215, 66, 0), # bright red "w": (152, 135, 95), # brown "W": (207, 192, 65), # yellow + "W ": (207, 192, 65), # yellow HACK HACK HACK "c": (64, 164, 185), # dark cyan "C": (119, 191, 207), # bright cyan "b": (0, 72, 189), # dark blue @@ -218,6 +219,7 @@ "o": (241, 95, 34), "O": (233, 159, 16), "transparent": (15, 59, 58, 0), + "#": (15, 59, 58, 0), # HACK HACK HACK } QUD_VIRIDIAN = (15, 59, 58, 255) # 0f3b3a LIQUID_COLORS = { diff --git a/pyproject.toml b/pyproject.toml index 540719a..fcd97ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ repository = "https://github.com/TrashMonks/hagadias" keywords = ["Caves", "Qud"] [tool.poetry.dependencies] -python = "^3.10" +python = "3.10.*" anytree = "^2.8.0" pefile = "^2022.5.30" Pillow = "^9.2.0"