terralab-cli 3.2.0__tar.gz → 3.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/PKG-INFO +3 -3
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/pyproject.toml +3 -3
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/LICENSE +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/README.md +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/.terralab-cli-config +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/__init__.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/auth_helper.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/cli.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/client.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/commands/__init__.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/commands/account_commands.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/commands/auth_commands.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/commands/pipeline_runs_commands.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/commands/pipelines_commands.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/commands/quotas_commands.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/config.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/constants.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/log.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/logic/__init__.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/logic/account_logic.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/logic/auth_logic.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/logic/pipeline_runs_logic.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/logic/pipelines_logic.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/logic/quotas_logic.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/sam_helper.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/utils.py +0 -0
- {terralab_cli-3.2.0 → terralab_cli-3.2.2}/terralab/version_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: terralab-cli
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.2
|
|
4
4
|
Summary: Command line interface for interacting with the Terra Scientific Pipelines Service, or Teaspoons.
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Author: Terra Scientific Services
|
|
@@ -13,14 +13,14 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
13
13
|
Requires-Dist: PyJWT (>=2.9.0,<3.0.0)
|
|
14
14
|
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
15
15
|
Requires-Dist: colorlog (>=6.9.0,<7.0.0)
|
|
16
|
-
Requires-Dist: cryptography (>=44.0.1,<
|
|
16
|
+
Requires-Dist: cryptography (>=44.0.1,<48.0.0)
|
|
17
17
|
Requires-Dist: oauth2-cli-auth (>=1.5,<3.0)
|
|
18
18
|
Requires-Dist: poetry (==2.3.4)
|
|
19
19
|
Requires-Dist: prompt-toolkit (>=3.0.51,<4.0.0)
|
|
20
20
|
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
|
21
21
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
|
22
22
|
Requires-Dist: tabulate (>=0.9,<0.11)
|
|
23
|
-
Requires-Dist: terra-scientific-pipelines-service-api-client (==2.
|
|
23
|
+
Requires-Dist: terra-scientific-pipelines-service-api-client (==2.4.2)
|
|
24
24
|
Requires-Dist: tqdm (>=4.67.0,<5.0.0)
|
|
25
25
|
Requires-Dist: tzlocal (>=5.2,<6.0)
|
|
26
26
|
Description-Content-Type: text/markdown
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "terralab-cli"
|
|
3
3
|
# version is auto-incremented. do not edit.
|
|
4
|
-
version = "3.2.
|
|
4
|
+
version = "3.2.2"
|
|
5
5
|
description = "Command line interface for interacting with the Terra Scientific Pipelines Service, or Teaspoons."
|
|
6
6
|
authors = ["Terra Scientific Services <teaspoons-developers@broadinstitute.org>"]
|
|
7
7
|
readme = "README.md"
|
|
@@ -14,7 +14,7 @@ terralab = "terralab.cli:cli"
|
|
|
14
14
|
|
|
15
15
|
[tool.poetry.dependencies]
|
|
16
16
|
python = "^3.12"
|
|
17
|
-
terra-scientific-pipelines-service-api-client = "2.
|
|
17
|
+
terra-scientific-pipelines-service-api-client = "2.4.2"
|
|
18
18
|
python-dotenv = "^1.0.1"
|
|
19
19
|
click = "^8.1.7"
|
|
20
20
|
colorlog = "^6.9.0"
|
|
@@ -25,7 +25,7 @@ tqdm = "^4.67.0"
|
|
|
25
25
|
tzlocal = "^5.2"
|
|
26
26
|
tabulate = ">=0.9,<0.11"
|
|
27
27
|
poetry = "2.3.4"
|
|
28
|
-
cryptography = ">=44.0.1,<
|
|
28
|
+
cryptography = ">=44.0.1,<48.0.0"
|
|
29
29
|
prompt-toolkit = "^3.0.51"
|
|
30
30
|
|
|
31
31
|
[tool.poetry.group.dev.dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|