craft-ai-sdk 0.50.0rc1__tar.gz → 0.50.1rc1__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 (23) hide show
  1. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/PKG-INFO +1 -1
  2. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/__init__.py +1 -1
  3. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/sdk.py +1 -1
  4. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/documentation.pdf +0 -0
  5. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/pyproject.toml +1 -1
  6. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/setup.py +1 -1
  7. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/LICENSE +0 -0
  8. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/README.md +0 -0
  9. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/constants.py +0 -0
  10. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/core/data_store.py +0 -0
  11. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/core/deployments.py +0 -0
  12. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/core/endpoints.py +0 -0
  13. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/core/environment_variables.py +0 -0
  14. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/core/pipeline_executions.py +0 -0
  15. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/core/pipeline_metrics.py +0 -0
  16. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/core/pipelines.py +0 -0
  17. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/core/resource_metrics.py +0 -0
  18. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/core/steps.py +0 -0
  19. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/core/users.py +0 -0
  20. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/exceptions.py +0 -0
  21. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/io.py +0 -0
  22. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/utils.py +0 -0
  23. {craft_ai_sdk-0.50.0rc1 → craft_ai_sdk-0.50.1rc1}/craft_ai_sdk/warnings.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: craft-ai-sdk
3
- Version: 0.50.0rc1
3
+ Version: 0.50.1rc1
4
4
  Summary: Craft AI MLOps platform SDK
5
5
  Home-page: https://www.craft.ai/
6
6
  License: Apache-2.0
@@ -14,4 +14,4 @@ from .io import ( # noqa: F401
14
14
  )
15
15
 
16
16
 
17
- __version__ = "0.50.0rc1"
17
+ __version__ = "0.50.1rc1"
@@ -128,7 +128,7 @@ class CraftAiSdk(BaseCraftAiSdk):
128
128
  os.environ.get("CRAFT_AI__MULTIPART_PART_SIZE__B", str(38 * 256 * 1024))
129
129
  )
130
130
  _access_token_margin = timedelta(seconds=30)
131
- _version = "0.50.0rc1" # Would be better to share it somewhere
131
+ _version = "0.50.1rc1" # Would be better to share it somewhere
132
132
 
133
133
  def __init__(
134
134
  self,
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "craft-ai-sdk"
3
- version = "0.50.0rc1"
3
+ version = "0.50.1rc1"
4
4
  description = "Craft AI MLOps platform SDK"
5
5
  license = "Apache-2.0"
6
6
  authors = ["Craft AI <contact@craft.ai>"]
@@ -24,7 +24,7 @@ entry_points = \
24
24
 
25
25
  setup_kwargs = {
26
26
  'name': 'craft-ai-sdk',
27
- 'version': '0.50.0rc1',
27
+ 'version': '0.50.1rc1',
28
28
  'description': 'Craft AI MLOps platform SDK',
29
29
  'long_description': '# Craft AI Python SDK\n\nThis Python SDK lets you interact with Craft AI MLOps Platform.\n\n## Installation\nThis project relies on **Python 3.8+**. Once a supported version of Python is installed, you can install `craft-ai-sdk` from PyPI with:\n\n```console\npip install craft-ai-sdk\n```\n\n## Basic usage\nYou can configure the SDK by instantiating the `CraftAiSdk` class in this way:\n\n```python\nfrom craft_ai_sdk import CraftAiSdk\n\nCRAFT_AI_SDK_TOKEN = # your access key obtained from your settings page\nCRAFT_AI_ENVIRONMENT_URL = # url to your environment\n\nsdk = CraftAiSdk(sdk_token=CRAFT_AI_SDK_TOKEN, environment_url=CRAFT_AI_ENVIRONMENT_URL)\n```\n\nIf using the SDK in interactive mode, some additional feedbacks will be printed. You can force disable or enable those logs by either\n* Setting the `verbose_log` SDK parameter\n* Or setting the `SDK_VERBOSE_LOG` env var\n',
30
30
  'author': 'Craft AI',