datacrunch 1.17.3__tar.gz → 1.18.0__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.
- {datacrunch-1.17.3 → datacrunch-1.18.0}/PKG-INFO +5 -3
- datacrunch-1.18.0/README.md +7 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/__init__.py +1 -1
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/datacrunch.py +0 -8
- {datacrunch-1.17.3 → datacrunch-1.18.0}/pyproject.toml +2 -2
- datacrunch-1.17.3/README.md +0 -5
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/InferenceClient/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/InferenceClient/inference_client.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/authentication/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/authentication/authentication.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/balance/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/balance/balance.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/constants.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/containers/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/containers/containers.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/exceptions.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/helpers.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/http_client/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/http_client/http_client.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/images/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/images/images.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/instance_types/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/instance_types/instance_types.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/instances/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/instances/instances.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/locations/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/locations/locations.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/ssh_keys/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/ssh_keys/ssh_keys.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/startup_scripts/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/startup_scripts/startup_scripts.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/volume_types/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/volume_types/volume_types.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/volumes/__init__.py +0 -0
- {datacrunch-1.17.3 → datacrunch-1.18.0}/datacrunch/volumes/volumes.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: datacrunch
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.18.0
|
|
4
4
|
Summary: datacrunch is now verda
|
|
5
5
|
Author: Verda Cloud Oy
|
|
6
6
|
Author-email: Verda Cloud Oy <info@verda.com>
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.14
|
|
18
|
-
Requires-Dist: verda==1.
|
|
18
|
+
Requires-Dist: verda==1.18.0
|
|
19
19
|
Requires-Python: >=3.10
|
|
20
20
|
Project-URL: Changelog, https://github.com/verda-cloud/sdk-python/blob/master/CHANGELOG.md
|
|
21
21
|
Project-URL: Documentation, https://datacrunch-python.readthedocs.io/
|
|
@@ -25,6 +25,8 @@ Description-Content-Type: text/markdown
|
|
|
25
25
|
|
|
26
26
|
# datacrunch is now verda
|
|
27
27
|
|
|
28
|
-
This package has been
|
|
28
|
+
This package has been renamed to `verda`. Use `pip install verda` or `uv add verda` instead.
|
|
29
|
+
|
|
30
|
+
To migrate from `datacrunch`, follow [the migration guide](https://github.com/verda-cloud/sdk-python/blob/master/MIGRATION.md).
|
|
29
31
|
|
|
30
32
|
New package: https://pypi.org/project/verda/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# datacrunch is now verda
|
|
2
|
+
|
|
3
|
+
This package has been renamed to `verda`. Use `pip install verda` or `uv add verda` instead.
|
|
4
|
+
|
|
5
|
+
To migrate from `datacrunch`, follow [the migration guide](https://github.com/verda-cloud/sdk-python/blob/master/MIGRATION.md).
|
|
6
|
+
|
|
7
|
+
New package: https://pypi.org/project/verda/
|
|
@@ -47,7 +47,7 @@ __all__ = [
|
|
|
47
47
|
import warnings
|
|
48
48
|
|
|
49
49
|
warnings.warn(
|
|
50
|
-
'datacrunch is deprecated; use verda package instead: https://github.com/verda-cloud/sdk-python/blob/master/
|
|
50
|
+
'datacrunch is deprecated; use verda package instead: https://github.com/verda-cloud/sdk-python/blob/master/MIGRATION.md',
|
|
51
51
|
DeprecationWarning,
|
|
52
52
|
stacklevel=2,
|
|
53
53
|
)
|
|
@@ -34,11 +34,3 @@ __all__ = [
|
|
|
34
34
|
'VolumesService',
|
|
35
35
|
'__version__',
|
|
36
36
|
]
|
|
37
|
-
|
|
38
|
-
import warnings
|
|
39
|
-
|
|
40
|
-
warnings.warn(
|
|
41
|
-
'datacrunch is deprecated; use verda package instead: https://github.com/verda-cloud/sdk-python/blob/master/CHANGELOG.md#1170---2025-11-26',
|
|
42
|
-
DeprecationWarning,
|
|
43
|
-
stacklevel=2,
|
|
44
|
-
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "datacrunch"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.18.0" # version will be set by .github/workflows/publish.yml before release
|
|
4
4
|
description = "datacrunch is now verda"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -21,7 +21,7 @@ classifiers = [
|
|
|
21
21
|
"Programming Language :: Python :: 3.14",
|
|
22
22
|
]
|
|
23
23
|
dependencies = [
|
|
24
|
-
"verda==1.
|
|
24
|
+
"verda==1.18.0",
|
|
25
25
|
]
|
|
26
26
|
|
|
27
27
|
[project.urls]
|
datacrunch-1.17.3/README.md
DELETED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|