-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8619 from OpenMined/reverse_release_changes
Reverted changes for the latest release
- Loading branch information
Showing
19 changed files
with
38 additions
and
38 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
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
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 @@ | ||
[metadata] | ||
name = syft | ||
version = attr: "0.8.5" | ||
version = attr: "0.8.6-beta.0" | ||
description = Perform numpy-like analysis on data that remains in someone elses server | ||
author = OpenMined | ||
author_email = [email protected] | ||
|
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,4 +1,4 @@ | ||
__version__ = "0.8.5" | ||
__version__ = "0.8.6-beta.0" | ||
|
||
# stdlib | ||
from collections.abc import Callable | ||
|
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ def test_image_build(domain_1_port) -> None: | |
port=domain_1_port, email="[email protected]", password="changethis" | ||
) | ||
|
||
syft_base_tag = "0.8.5-beta.10" # {sy.__version__} | ||
syft_base_tag = {sy.__version__} | ||
|
||
# Submit Docker Worker Config | ||
docker_config_rl = f""" | ||
|
@@ -77,9 +77,9 @@ def test_pool_launch(domain_1_port) -> None: | |
domain_client: DomainClient = sy.login( | ||
port=domain_1_port, email="[email protected]", password="changethis" | ||
) | ||
# assert len(domain_client.worker_pools.get_all()) == 1 | ||
assert len(domain_client.worker_pools.get_all()) == 1 | ||
|
||
syft_base_tag = "0.8.5-beta.10" # {sy.__version__} | ||
syft_base_tag = {sy.__version__} | ||
|
||
# Submit Docker Worker Config | ||
docker_config_opendp = f""" | ||
|
@@ -119,7 +119,7 @@ def test_pool_launch(domain_1_port) -> None: | |
assert len(worker_pool_res) == 3 | ||
|
||
assert all(worker.error is None for worker in worker_pool_res) | ||
# assert len(domain_client.worker_pools.get_all()) == 2 | ||
assert len(domain_client.worker_pools.get_all()) == 2 | ||
|
||
worker_pool = domain_client.worker_pools[worker_pool_name] | ||
assert len(worker_pool.worker_list) == 3 | ||
|
@@ -181,7 +181,7 @@ def test_pool_image_creation_job_requests(domain_1_port) -> None: | |
assert isinstance(res, SyftSuccess) | ||
ds_client = sy.login(email=ds_email, password="secret_pw", port=domain_1_port) | ||
|
||
syft_base_tag = "0.8.5-beta.10" # {sy.__version__} | ||
syft_base_tag = {sy.__version__} | ||
|
||
# the DS makes a request to create an image and a pool based on the image | ||
|
||
|