-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: dvc/remotes name unification (#3684)
Partially fixes #2089
- Loading branch information
Showing
49 changed files
with
251 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from dvc.dependency.base import DependencyBase | ||
from dvc.output.base import OutputBase | ||
from dvc.remote.http import RemoteHTTP | ||
from dvc.remote.http import HTTPRemote | ||
|
||
|
||
class DependencyHTTP(DependencyBase, OutputBase): | ||
REMOTE = RemoteHTTP | ||
REMOTE = HTTPRemote |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from .http import DependencyHTTP | ||
from dvc.remote.https import RemoteHTTPS | ||
from dvc.remote.https import HTTPSRemote | ||
|
||
|
||
class DependencyHTTPS(DependencyHTTP): | ||
REMOTE = RemoteHTTPS | ||
REMOTE = HTTPSRemote |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from dvc.output.s3 import OutputS3 | ||
from dvc.remote.gs import RemoteGS | ||
from dvc.remote.gs import GSRemote | ||
|
||
|
||
class OutputGS(OutputS3): | ||
REMOTE = RemoteGS | ||
REMOTE = GSRemote |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from dvc.output.base import OutputBase | ||
from dvc.remote.hdfs import RemoteHDFS | ||
from dvc.remote.hdfs import HDFSRemote | ||
|
||
|
||
class OutputHDFS(OutputBase): | ||
REMOTE = RemoteHDFS | ||
REMOTE = HDFSRemote |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from dvc.output.base import OutputBase | ||
from dvc.remote.s3 import RemoteS3 | ||
from dvc.remote.s3 import S3Remote | ||
|
||
|
||
class OutputS3(OutputBase): | ||
REMOTE = RemoteS3 | ||
REMOTE = S3Remote |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from dvc.output.base import OutputBase | ||
from dvc.remote.ssh import RemoteSSH | ||
from dvc.remote.ssh import SSHRemote | ||
|
||
|
||
class OutputSSH(OutputBase): | ||
REMOTE = RemoteSSH | ||
REMOTE = SSHRemote |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from .http import RemoteHTTP | ||
from .http import HTTPRemote | ||
from dvc.scheme import Schemes | ||
|
||
|
||
class RemoteHTTPS(RemoteHTTP): | ||
class HTTPSRemote(HTTPRemote): | ||
scheme = Schemes.HTTPS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.