Skip to content

Commit

Permalink
Merge branch 'fix-serde-for-types' of github.com:OpenMined/PySyft int…
Browse files Browse the repository at this point in the history
…o fix-serde-for-types
  • Loading branch information
koenvanderveen committed Jul 19, 2024
2 parents b191066 + 7d91c76 commit e732993
Show file tree
Hide file tree
Showing 19 changed files with 146 additions and 120 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.7-beta.15
current_version = 0.8.7-beta.16
tag = False
tag_name = {new_version}
commit = True
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Mono Repo Global Version
__version__ = "0.8.7-beta.15"
__version__ = "0.8.7-beta.16"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"cell_type": "code",
"execution_count": null,
"id": "0",
"metadata": {},
"metadata": {
"metadata": {}
},
"outputs": [],
"source": [
"# third party\n",
Expand All @@ -27,7 +29,9 @@
"cell_type": "code",
"execution_count": null,
"id": "2",
"metadata": {},
"metadata": {
"metadata": {}
},
"outputs": [],
"source": [
"server = sy.orchestra.launch(name=\"mnist-torch-datasite\", dev_mode=True)\n",
Expand All @@ -46,7 +50,9 @@
"cell_type": "code",
"execution_count": null,
"id": "4",
"metadata": {},
"metadata": {
"metadata": {}
},
"outputs": [],
"source": [
"datasets = ds_client.datasets.get_all()\n",
Expand Down Expand Up @@ -103,7 +109,7 @@
"metadata": {},
"outputs": [],
"source": [
"assert isinstance(training_images.data, sy.SyftError)\n",
"assert training_images.data is None\n",
"training_labels.data"
]
},
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Mono Repo Global Version
__version__ = "0.8.7-beta.15"
__version__ = "0.8.7-beta.16"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/backend/grid/images/worker_cpu.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# NOTE: This dockerfile will be built inside a syft-backend container in PROD
# Hence COPY will not work the same way in DEV vs. PROD

ARG SYFT_VERSION_TAG="0.8.7-beta.15"
ARG SYFT_VERSION_TAG="0.8.7-beta.16"
FROM openmined/syft-backend:${SYFT_VERSION_TAG}

# should match base image python version
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/devspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ vars:
DOCKER_IMAGE_RATHOLE: openmined/syft-rathole
DOCKER_IMAGE_ENCLAVE_ATTESTATION: openmined/syft-enclave-attestation
CONTAINER_REGISTRY: "docker.io"
VERSION: "0.8.7-beta.15"
VERSION: "0.8.7-beta.16"
PLATFORM: $(uname -m | grep -q 'arm64' && echo "arm64" || echo "amd64")

# This is a list of `images` that DevSpace can build for this project
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "syft-ui",
"version": "0.8.7-beta.15",
"version": "0.8.7-beta.16",
"private": true,
"scripts": {
"dev": "pnpm i && vite dev --host --port 80",
Expand Down
Loading

0 comments on commit e732993

Please sign in to comment.