-
-
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 #8614 from OpenMined/bump_version_0.8.5
Bumped version to 0.8.5
- Loading branch information
Showing
21 changed files
with
40 additions
and
33 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 +1 @@ | ||
LATEST_STABLE_SYFT = "0.8.4" | ||
LATEST_STABLE_SYFT = "0.8.5" |
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-beta.10" | ||
version = attr: "0.8.5" | ||
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-beta.10" | ||
__version__ = "0.8.5" | ||
|
||
# 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
LATEST_STABLE_SYFT = "0.8.4" | ||
LATEST_STABLE_SYFT = "0.8.5" |
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,9 +24,11 @@ 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__} | ||
|
||
# Submit Docker Worker Config | ||
docker_config_rl = """ | ||
FROM openmined/grid-backend:0.8.5-beta.10 | ||
docker_config_rl = f""" | ||
FROM openmined/grid-backend:{syft_base_tag} | ||
RUN pip install recordlinkage | ||
""" | ||
docker_config = DockerWorkerConfig(dockerfile=docker_config_rl) | ||
|
@@ -77,9 +79,11 @@ def test_pool_launch(domain_1_port) -> None: | |
) | ||
# assert len(domain_client.worker_pools.get_all()) == 1 | ||
|
||
syft_base_tag = "0.8.5-beta.10" # {sy.__version__} | ||
|
||
# Submit Docker Worker Config | ||
docker_config_opendp = """ | ||
FROM openmined/grid-backend:0.8.5-beta.10 | ||
docker_config_opendp = f""" | ||
FROM openmined/grid-backend:{syft_base_tag} | ||
RUN pip install opendp | ||
""" | ||
docker_config = DockerWorkerConfig(dockerfile=docker_config_opendp) | ||
|
@@ -177,9 +181,12 @@ 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__} | ||
|
||
# the DS makes a request to create an image and a pool based on the image | ||
docker_config_np = """ | ||
FROM openmined/grid-backend:0.8.5-beta.10 | ||
|
||
docker_config_np = f""" | ||
FROM openmined/grid-backend:{syft_base_tag} | ||
RUN pip install numpy | ||
""" | ||
docker_config = DockerWorkerConfig(dockerfile=docker_config_np) | ||
|