Skip to content
This repository was archived by the owner on Nov 18, 2024. It is now read-only.

Commit c9181df

Browse files
committed
- Bug fix with fetching terminal version.
1 parent 7d719b2 commit c9181df

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "thetadata"
7-
version = "0.9.3"
7+
version = "0.9.4"
88
authors = [
99
{ name="Bailey Danseglio", email="[email protected]" },
1010
{ name="Adler Weber", email="[email protected]" },
@@ -24,6 +24,7 @@ dependencies = [
2424
"wget",
2525
"psutil",
2626
"ijson",
27+
"requests",
2728
]
2829

2930
[project.optional-dependencies]

thetadata/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from .terminal import check_download, launch_terminal
2828

2929
_NOT_CONNECTED_MSG = "You must establish a connection first."
30-
_VERSION = '0.9.3'
30+
_VERSION = '0.9.4'
3131
URL_BASE = "http://127.0.0.1:25510/"
3232

3333

thetadata/terminal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def launch_terminal(username: str = None, passwd: str = None, use_bundle: bool =
9494

9595
def check_download(auto_update: bool, stable: bool) -> bool:
9696
if stable:
97-
link = 'https://download-latest.thetadata.us'
97+
link = 'https://download-stable.thetadata.us'
9898
else:
9999
link = 'https://download-unstable.thetadata.us'
100100
try:

0 commit comments

Comments
 (0)