-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged PR 225: fix bugs with cli and websockets
-fix cli requests import bug by adding it to cli section of pyproject.toml -move qrcodet requirement from remote to cli part of pyproject.toml -fix url error with blocks endpoint by removing trailing slash -change the websocket connection to only happen once get_data_api is called not when the sdk object is created -fix small bug where if validate_token was false they sdk would error out because there is no expiry time
- Loading branch information
Showing
4 changed files
with
36 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ mypkg = ["*.so", "*.dll"] | |
|
||
[project] | ||
name = "atriumdb" | ||
version = "2.2.1" | ||
version = "2.2.2" | ||
description = "Timeseries Database" | ||
readme = "README.md" | ||
authors = [{name = "Robert Greer, William Dixon, Spencer Vecile"}, { name = "Robert Greer", email = "[email protected]"}, { name = "William Dixon", email = "[email protected]" }, { name = "Spencer Vecile", email = "[email protected]"}] | ||
|
@@ -49,11 +49,12 @@ mariadb = [ | |
remote = [ | ||
"requests >= 2.28.2, < 3", | ||
"PyJWT[crypto] >= 2.8.0, < 3", | ||
"qrcodeT >= 1.0.4, < 2", | ||
"python-dotenv >= 0.21, < 1", | ||
"websockets >= 12.0, < 13", | ||
] | ||
cli = [ | ||
"requests >= 2.28.2, < 3", | ||
"qrcodeT >= 1.0.4, < 2", | ||
"click >= 8.1.3, < 9", | ||
"pandas >= 1.5, < 2", | ||
"tabulate >= 0.9.0, < 1", | ||
|
@@ -72,7 +73,6 @@ all = [ | |
"pandas >= 1.5, < 2", | ||
"tabulate >= 0.9.0, < 1", | ||
"fastparquet == 2023.2.0", | ||
"PyYAML >= 6.0" | ||
] | ||
|
||
[dev-dependencies] | ||
|