Skip to content

Commit 781fff5

Browse files
committed
fix: use absolute imports for PyInstaller compatibility (v0.2.23)
1 parent 9f64358 commit 781fff5

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thoth-cli",
3-
"version": "0.2.22",
3+
"version": "0.2.23",
44
"description": "𓅝 Astrological calculations from the command line. Swiss Ephemeris precision. Built for humans and agents.",
55
"author": "AKLO <aklo@aklolabs.com>",
66
"license": "MIT",

packages/cli/src/bin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,7 @@ program
11461146

11471147
// Banner
11481148
console.log(chalk.dim(''));
1149-
console.log(chalk.yellow(' 𓅝') + chalk.dim(' thoth-cli v0.2.22'));
1149+
console.log(chalk.yellow(' 𓅝') + chalk.dim(' thoth-cli v0.2.23'));
11501150
console.log(chalk.dim(''));
11511151

11521152
program.parse();

packages/core/thoth_core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
𓅝 As above, so below. 𓅝
66
"""
77

8-
__version__ = "0.2.22"
8+
__version__ = "0.2.23"

packages/core/thoth_core/cli.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1625,7 +1625,7 @@ def tarot_draw(
16251625
):
16261626
"""Draw tarot cards with true randomness (cryptographic entropy)."""
16271627
try:
1628-
from .tarot import draw_cards, SPREADS
1628+
from thoth_core.tarot import draw_cards, SPREADS
16291629

16301630
# If spread specified, use its count
16311631
if spread in SPREADS:
@@ -1649,7 +1649,7 @@ def tarot_card(
16491649
):
16501650
"""Look up a specific tarot card."""
16511651
try:
1652-
from .tarot import get_card
1652+
from thoth_core.tarot import get_card
16531653

16541654
card = get_card(identifier)
16551655
if card is None:
@@ -1668,7 +1668,7 @@ def tarot_deck(
16681668
):
16691669
"""List tarot cards."""
16701670
try:
1671-
from .tarot import get_deck
1671+
from thoth_core.tarot import get_deck
16721672

16731673
cards = get_deck(filter_type)
16741674
output_json({
@@ -1686,7 +1686,7 @@ def tarot_deck(
16861686
def tarot_spreads():
16871687
"""List available tarot spreads."""
16881688
try:
1689-
from .tarot import SPREADS
1689+
from thoth_core.tarot import SPREADS
16901690

16911691
spreads = []
16921692
for key, spread in SPREADS.items():

0 commit comments

Comments
 (0)