Skip to content

Commit

Permalink
Merge branch 'dev' into madhava/signup_test_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yashgorana authored Mar 18, 2024
2 parents 1679c64 + a480fd8 commit 3e9a6ba
Show file tree
Hide file tree
Showing 30 changed files with 214 additions and 115 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.5-beta.6
current_version = 0.8.5-beta.8
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.5-beta.6"
__version__ = "0.8.5-beta.8"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
Expand Down
48 changes: 43 additions & 5 deletions notebooks/Testing/Veilid/Alice-Python-Server.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -152,20 +152,58 @@
},
{
"cell_type": "markdown",
"id": "fd824cca-2a7f-4ea9-9e67-1c06d1f8bec2",
"id": "ddba6e22-96ee-46d7-8251-fcaa4140253b",
"metadata": {},
"source": [
"### Send AppMessage using VLD Key to Peer"
"### Ping Peer "
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "3de4b843-f3a2-4d96-bd48-121ae2b6f197",
"metadata": {},
"outputs": [],
"source": [
"peer_vld_key = str(input(\"Enter Peer VLD Key\"))"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "575c3441-cd11-4a42-ab4e-0bde3e5d5c72",
"metadata": {},
"outputs": [],
"source": [
"peer_vld_key"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "64d0b338-a439-4982-b739-24c056833be1",
"metadata": {},
"outputs": [],
"source": [
"res = requests.post(f\"http://{host}:{port}/ping/{peer_vld_key}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "25cfb508-dd08-44b9-85c9-e6aa07e96a97",
"id": "3ce13553-dae5-442e-bd56-2dddb526c0f2",
"metadata": {},
"outputs": [],
"source": [
"peer_vld_key = input(\"Enter Peer VLD Key\")"
"res.json()"
]
},
{
"cell_type": "markdown",
"id": "fd824cca-2a7f-4ea9-9e67-1c06d1f8bec2",
"metadata": {},
"source": [
"### Send AppMessage using VLD Key to Peer"
]
},
{
Expand Down Expand Up @@ -235,7 +273,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.5"
"version": "3.11.8"
}
},
"nbformat": 4,
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.5-beta.6"
__version__ = "0.8.5-beta.8"
# 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/worker_cpu.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# Later we'd want to uninstall old python, and then install a new python runtime...
# ... but pre-built syft deps may break!

ARG SYFT_VERSION_TAG="0.8.5-beta.6"
ARG SYFT_VERSION_TAG="0.8.5-beta.8"
FROM openmined/grid-backend:${SYFT_VERSION_TAG}

ARG PYTHON_VERSION="3.12"
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/devspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ vars:
DEVSPACE_ENV_FILE: "default.env"
CONTAINER_REGISTRY: "docker.io"
NODE_NAME: "mynode"
VERSION: "0.8.5-beta.6"
VERSION: "0.8.5-beta.8"

# This is a list of `images` that DevSpace can build for this project
# We recommend to skip image building during development (devspace dev) as much as possible
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": "pygrid-ui",
"version": "0.8.5-beta.6",
"version": "0.8.5-beta.8",
"private": true,
"scripts": {
"dev": "pnpm i && vite dev --host --port 80",
Expand Down
Loading

0 comments on commit 3e9a6ba

Please sign in to comment.