terralab-cli 4.0.2__tar.gz → 4.0.4__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.
Files changed (27) hide show
  1. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/PKG-INFO +3 -3
  2. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/pyproject.toml +3 -3
  3. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/commands/quotas_commands.py +8 -1
  4. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/constants.py +3 -0
  5. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/LICENSE +0 -0
  6. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/README.md +0 -0
  7. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/.terralab-cli-config +0 -0
  8. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/__init__.py +0 -0
  9. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/auth_helper.py +0 -0
  10. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/cli.py +0 -0
  11. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/client.py +0 -0
  12. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/commands/__init__.py +0 -0
  13. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/commands/account_commands.py +0 -0
  14. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/commands/auth_commands.py +0 -0
  15. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/commands/pipeline_runs_commands.py +0 -0
  16. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/commands/pipelines_commands.py +0 -0
  17. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/config.py +0 -0
  18. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/log.py +0 -0
  19. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/logic/__init__.py +0 -0
  20. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/logic/account_logic.py +0 -0
  21. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/logic/auth_logic.py +0 -0
  22. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/logic/pipeline_runs_logic.py +0 -0
  23. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/logic/pipelines_logic.py +0 -0
  24. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/logic/quotas_logic.py +0 -0
  25. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/sam_helper.py +0 -0
  26. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/utils.py +0 -0
  27. {terralab_cli-4.0.2 → terralab_cli-4.0.4}/terralab/version_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: terralab-cli
3
- Version: 4.0.2
3
+ Version: 4.0.4
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,<49.0.0)
16
+ Requires-Dist: cryptography (>=44.0.1,<50.0.0)
17
17
  Requires-Dist: oauth2-cli-auth (>=1.5,<3.0)
18
18
  Requires-Dist: poetry (==2.4.1)
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 (==4.0.11)
23
+ Requires-Dist: terra-scientific-pipelines-service-api-client (==5.0.3)
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 = "4.0.2"
4
+ version = "4.0.4"
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 = "4.0.11"
17
+ terra-scientific-pipelines-service-api-client = "5.0.3"
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.4.1"
28
- cryptography = ">=44.0.1,<49.0.0"
28
+ cryptography = ">=44.0.1,<50.0.0"
29
29
  prompt-toolkit = "^3.0.51"
30
30
 
31
31
  [tool.poetry.group.dev.dependencies]
@@ -4,8 +4,9 @@ import logging
4
4
 
5
5
  import click
6
6
 
7
- from terralab.log import indented
7
+ from terralab.log import indented, add_blankline_before
8
8
  from terralab.logic import quotas_logic
9
+ from terralab.constants import QUOTAS_SUPPORT_ARTICLE_URL
9
10
  from terralab.utils import handle_api_exceptions
10
11
 
11
12
  LOGGER = logging.getLogger(__name__)
@@ -31,3 +32,9 @@ def quota(pipeline_name: str) -> None:
31
32
  LOGGER.info(
32
33
  indented(f"Quota Available: {quota_limit - quota_consumed} {quota_units}")
33
34
  )
35
+ LOGGER.info(
36
+ add_blankline_before(
37
+ "For more information on quotas and how to purchase more, visit: "
38
+ f"{QUOTAS_SUPPORT_ARTICLE_URL}"
39
+ )
40
+ )
@@ -21,3 +21,6 @@ MAX_FILE_UPLOAD_SIZE_BYTES = 50 * 1025 * 1024 * 1024 # 50GB
21
21
  SUPPORT_EMAIL = "scientific-services-support@broadinstitute.org"
22
22
  SUPPORT_EMAIL_TEXT = f"For help troubleshooting, email {SUPPORT_EMAIL}"
23
23
  TERMS_OF_SERVICE_URL = "https://services.terra.bio/#pipelines/terms-of-service"
24
+ QUOTAS_SUPPORT_ARTICLE_URL = (
25
+ "https://broadscientificservices.zendesk.com/hc/en-us/articles/39903092619035"
26
+ )
File without changes
File without changes