Skip to content

Commit

Permalink
Merge pull request #9353 from OpenMined/merge-0.9.2
Browse files Browse the repository at this point in the history
Merge 0.9.2
  • Loading branch information
koenvanderveen authored Oct 31, 2024
2 parents 7c4c3f3 + e17d6fb commit 6154a20
Show file tree
Hide file tree
Showing 25 changed files with 376 additions and 343 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.9.2-beta.8
current_version = 0.9.3-beta.0
tag = False
tag_name = {new_version}
commit = True
Expand Down
2 changes: 1 addition & 1 deletion .bumpversion_stable.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.1
current_version = 0.9.2
tag = False
tag_name = {new_version}
commit = True
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-tests-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ jobs:
# - name: Run syft backend base image building test
# if: steps.changes.outputs.stack == 'true'
# timeout-minutes: 60
# run: |
# tox -e backend.test.basecpu
# timeout-minutes: 60
# run: |
# tox -e backend.test.basecpu
# run: |
# echo "Skipping pr image test"

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Launch <a href="https://docs.openmined.org/en/latest/deployment/deployment-doc-1
```python
import syft as sy

sy.requires(">=0.9.1,<0.9.2")
sy.requires(">=0.9.2,<0.9.3")

server = sy.orchestra.launch(
name="my-datasite",
Expand Down Expand Up @@ -70,7 +70,7 @@ Main way to use a Datasite is via our Syft client, in a Jupyter Notebook. Check
```python
import syft as sy

sy.requires(">=0.9.1,<0.9.2")
sy.requires(">=0.9.2,<0.9.3")

datasite_client = sy.login(
port=8080,
Expand Down Expand Up @@ -138,12 +138,12 @@ For questions about PySyft, reach out via `#support` on <a href="https://slack.o

**Latest Stable**

- `0.9.1` (Stable) - <a href="https://docs.openmined.org/en/latest/index.html">Docs</a>
- `0.9.2` (Stable) - <a href="https://docs.openmined.org/en/latest/index.html">Docs</a>
- Install PySyft (Stable): `pip install -U syft`

**Latest Beta**

- `0.9.2` (Beta) - `dev` branch 👈🏽
- `0.9.3` (Beta) - `dev` branch 👈🏽
- Install PySyft (Beta): `pip install -U syft --pre`

Find more about previous <a href="./releases.md">releases here</a>.
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.9.2-beta.8"
__version__ = "0.9.3-beta.0"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
Expand Down
2 changes: 1 addition & 1 deletion notebooks/api/0.8/14-container-images.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
" if (bool(os.environ[\"DEV_MODE\"]) and running_as_container)\n",
" else sy.__version__\n",
")\n",
"# syft_base_worker_tag = \"0.9.2-beta.1\""
"syft_base_worker_tag = \"0.9.2-beta.7\""
]
},
{
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.9.2-beta.8"
__version__ = "0.9.3-beta.0"
# 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.9.2-beta.8"
ARG SYFT_VERSION_TAG="0.9.3-beta.0"
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.9.2-beta.8"
VERSION: "0.9.3-beta.0"
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.9.2-beta.8",
"version": "0.9.3-beta.0",
"private": true,
"scripts": {
"dev": "pnpm i && vite dev --host --port 80",
Expand Down
Loading

0 comments on commit 6154a20

Please sign in to comment.