Skip to content

Commit e2f0f7b

Browse files
authored
feat: retire gradient v1 and v2 (#385)
Retire Jobs, Experiments, Deployments V2 and Tensorboards. These features have been supplanted by workflows and deployments v3. BREAKING CHANGE: Removed clients for retired products
1 parent 53d4c87 commit e2f0f7b

File tree

124 files changed

+513
-20190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+513
-20190
lines changed

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ clean:
2323

2424
prepare-docs-source:
2525
@sphinx-apidoc -f -o source gradient
26-
@cp source/cli_docs/gradient.cli.rst source/gradient.cli.rst
2726

2827
gh-pages: prepare-docs-source
2928
@make html

gradient/api_sdk/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22
from .constants import *
33
from .models import *
44
from .repositories import *
5-
from .s3_downloader import JobArtifactsDownloader
6-
from .s3_uploader import ExperimentFileUploader, ExperimentWorkspaceDirectoryUploader
75
from .archivers import ZipArchiver
86
from .sdk_exceptions import *

gradient/api_sdk/clients/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,13 @@
22
from .dataset_client import DatasetsClient
33
from .dataset_tag_client import DatasetTagsClient
44
from .dataset_version_client import DatasetVersionsClient
5-
from .deployment_client import DeploymentsClient
6-
from .experiment_client import ExperimentsClient
7-
from .hyperparameter_client import HyperparameterJobsClient
8-
from .job_client import JobsClient
95
from .machine_types_client import MachineTypesClient
106
from .machines_client import MachinesClient
117
from .model_client import ModelsClient
128
from .notebook_client import NotebooksClient
139
from .project_client import ProjectsClient
1410
from .secret_client import SecretsClient
1511
from .storage_provider_client import StorageProvidersClient
16-
from .tensorboards_client import TensorboardClient
1712
from .workflow_client import WorkflowsClient
1813

1914
from .sdk_client import SdkClient

0 commit comments

Comments
 (0)