From 83b8ddb2b2e8e5594ebb6d08820104ef15c1f9e1 Mon Sep 17 00:00:00 2001 From: Tom Titcombe Date: Tue, 24 Nov 2020 17:38:51 +0000 Subject: [PATCH] Pin syft version to 0.2.* Installing 0.3.0 was breaking tests --- CHANGELOG.md | 1 + README.md | 3 ++- requirements.txt | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f6d1f7..6b4c794 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ ### Changed - Moved dataset splitting helper functions to "utils" folder +- Pinned `syft` version in requirements to `< 0.3.0` ## [0.1.0] - 2020-07-10 diff --git a/README.md b/README.md index 326d1ab..b75d998 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ See the [changelog](./CHANGELOG.md) for information on the current status of `PyVertical`. +**NOTE: PyVertical does not currently work with `syft 0.3.0`** ## The Process @@ -69,7 +70,7 @@ we recommend using [Conda]: - This creates an environment `pyvertical-dev` - Comes with most dependencies you will need 1. Activate the environment with `conda activate pyvertical-dev` -1. Run `pip install syft[udacity]` +1. Run `pip install syft==0.2.*` 1. Run `conda install notebook` N.b. Installing the dependencies takes several steps to circumvent versioning incompatibility between diff --git a/requirements.txt b/requirements.txt index aeb22ca..4672693 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -syft +syft==0.2.*