Skip to content

Commit

Permalink
Bump PySyft version to v0.2.6 (#3604)
Browse files Browse the repository at this point in the history
* Update `syft-proto` dependency to v0.4.5

* Bump PySyft version to `v0.2.6`

* Appease the style checkers
  • Loading branch information
karlhigley authored May 24, 2020
1 parent 682bfd2 commit 4768040
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions pip-dep/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
aiortc==0.9.28
flask_socketio~=4.2.1
Flask~=1.1.1
lz4~=3.0.2
msgpack~=1.0.0
numpy~=1.18.1
phe~=1.4.0
Pillow~=6.2.2
psutil==5.7.0
requests~=2.22.0
scipy~=1.4.1
git+git://github.com/tudorcebere/syft-proto@messaging_support#egg=syft-proto
syft-proto~=0.4.5
tblib~=1.6.0
torchvision~=0.5.0
torch~=1.4.0
tornado==4.5.3
websocket_client~=0.57.0
websockets~=8.1.0
aiortc==0.9.28
psutil==5.7.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.5
current_version = 0.2.6
commit = true

[bumpversion:file:setup.py]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_requirements(req_file):

setup(
name="syft",
version="0.2.5",
version="0.2.6",
author="Andrew Trask",
author_email="[email protected]",
description=("A Library for Private, Secure Deep Learning"),
Expand Down
4 changes: 2 additions & 2 deletions syft/execution/plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def build_nested_arg(arg, leaf_function):
self.toggle_tracing(True)
self.is_building = True

# typecheck
# Check the types
self.input_types = NestedTypeWrapper(args)

# Run once to build the plan
Expand Down Expand Up @@ -421,7 +421,7 @@ def traverse_nested_types(arg, leaf_function):
if isinstance(arg, list):
return [traverse_nested_types(obj, leaf_function) for obj in arg]
elif isinstance(arg, tuple):
return tuple([traverse_nested_types(obj, leaf_function) for obj in arg])
return tuple(traverse_nested_types(obj, leaf_function) for obj in arg)
elif isinstance(arg, dict):
return {k: traverse_nested_types(v, leaf_function) for k, v in arg.items()}
else:
Expand Down
2 changes: 1 addition & 1 deletion syft/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.5"
__version__ = "0.2.6"

0 comments on commit 4768040

Please sign in to comment.