-
-
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 #8511 from OpenMined/update-versions
Update Version to 0.8.4
- Loading branch information
Showing
23 changed files
with
47 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ registry: | |
|
||
syft: | ||
registry: "docker.io" | ||
version: 0.8.4-beta.31 | ||
version: 0.8.4 | ||
|
||
node: | ||
settings: | ||
|
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.3" | ||
LATEST_STABLE_SYFT = "0.8.4" |
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.4-beta.31" | ||
version = attr: "0.8.4" | ||
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.4-beta.31" | ||
__version__ = "0.8.4" | ||
|
||
# stdlib | ||
import pathlib | ||
|
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.3" | ||
LATEST_STABLE_SYFT = "0.8.4" |
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 |
---|---|---|
|
@@ -25,8 +25,8 @@ def test_image_build(domain_1_port) -> None: | |
) | ||
|
||
# Submit Docker Worker Config | ||
docker_config_rl = f""" | ||
FROM openmined/grid-backend:{sy.__version__} | ||
docker_config_rl = """ | ||
FROM openmined/grid-backend:0.8.4-beta.31 | ||
RUN pip install recordlinkage | ||
""" | ||
docker_config = DockerWorkerConfig(dockerfile=docker_config_rl) | ||
|
@@ -75,11 +75,11 @@ 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 | ||
|
||
# Submit Docker Worker Config | ||
docker_config_opendp = f""" | ||
FROM openmined/grid-backend:{sy.__version__} | ||
docker_config_opendp = """ | ||
FROM openmined/grid-backend:0.8.4-beta.31 | ||
RUN pip install opendp | ||
""" | ||
docker_config = DockerWorkerConfig(dockerfile=docker_config_opendp) | ||
|
@@ -115,7 +115,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 | ||
|
@@ -178,8 +178,8 @@ def test_pool_image_creation_job_requests(domain_1_port) -> None: | |
ds_client = sy.login(email=ds_email, password="secret_pw", port=domain_1_port) | ||
|
||
# the DS makes a request to create an image and a pool based on the image | ||
docker_config_np = f""" | ||
FROM openmined/grid-backend:{sy.__version__} | ||
docker_config_np = """ | ||
FROM openmined/grid-backend:0.8.4-beta.31 | ||
RUN pip install numpy | ||
""" | ||
docker_config = DockerWorkerConfig(dockerfile=docker_config_np) | ||
|