datacrunch 1.18.0__tar.gz → 1.20.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.
Files changed (34) hide show
  1. {datacrunch-1.18.0 → datacrunch-1.20.0}/PKG-INFO +2 -2
  2. {datacrunch-1.18.0 → datacrunch-1.20.0}/pyproject.toml +2 -2
  3. {datacrunch-1.18.0 → datacrunch-1.20.0}/README.md +0 -0
  4. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/InferenceClient/__init__.py +0 -0
  5. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/InferenceClient/inference_client.py +0 -0
  6. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/__init__.py +0 -0
  7. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/authentication/__init__.py +0 -0
  8. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/authentication/authentication.py +0 -0
  9. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/balance/__init__.py +0 -0
  10. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/balance/balance.py +0 -0
  11. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/constants.py +0 -0
  12. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/containers/__init__.py +0 -0
  13. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/containers/containers.py +0 -0
  14. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/datacrunch.py +0 -0
  15. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/exceptions.py +0 -0
  16. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/helpers.py +0 -0
  17. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/http_client/__init__.py +0 -0
  18. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/http_client/http_client.py +0 -0
  19. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/images/__init__.py +0 -0
  20. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/images/images.py +0 -0
  21. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/instance_types/__init__.py +0 -0
  22. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/instance_types/instance_types.py +0 -0
  23. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/instances/__init__.py +0 -0
  24. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/instances/instances.py +0 -0
  25. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/locations/__init__.py +0 -0
  26. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/locations/locations.py +0 -0
  27. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/ssh_keys/__init__.py +0 -0
  28. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/ssh_keys/ssh_keys.py +0 -0
  29. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/startup_scripts/__init__.py +0 -0
  30. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/startup_scripts/startup_scripts.py +0 -0
  31. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/volume_types/__init__.py +0 -0
  32. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/volume_types/volume_types.py +0 -0
  33. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/volumes/__init__.py +0 -0
  34. {datacrunch-1.18.0 → datacrunch-1.20.0}/datacrunch/volumes/volumes.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: datacrunch
3
- Version: 1.18.0
3
+ Version: 1.20.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.0
18
+ Requires-Dist: verda==1.20.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/
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "datacrunch"
3
- version = "1.18.0" # version will be set by .github/workflows/publish.yml before release
3
+ version = "1.20.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.18.0",
24
+ "verda==1.20.0",
25
25
  ]
26
26
 
27
27
  [project.urls]
File without changes