Skip to content

Commit

Permalink
Release 0.2.1 (#76)
Browse files Browse the repository at this point in the history
* tiny fixes

* bump version to 0.2.1
  • Loading branch information
jvmncs authored Aug 18, 2020
1 parent ed7a611 commit 386184e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Setting up a development environment on macOS is a little more involved since we
- Python (>= 3.5)
- [Bazel](https://www.bazel.build/) (>= 0.15.0)
- [GMP](https://gmplib.org/) (>= 6.1.2)
- [TensorFlow](https://www.tensorflow.org/) (== 1.13.1)
- [TensorFlow](https://www.tensorflow.org/) (see setup.py for version requirements for your TF Big version)

Using [Homebrew](https://brew.sh/) we first make sure that both [Bazel](https://docs.bazel.build/versions/master/install-os-x.html#install-with-installer-mac-os-x) and GMP are installed. We recommend using a Bazel version earlier than 1.0.0, e.g.:

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def has_ext_modules(self):

setuptools.setup(
name="tf-big",
version="0.2.0",
version="0.2.1",
packages=setuptools.find_packages(),
package_data={
'': ['*.so'],
Expand All @@ -29,7 +29,7 @@ def has_ext_modules(self):
],
extras_require={
"tf": ["tensorflow~=2.2.0"],
"nightly": ["tf-nightly"]
"nightly": ["tf-nightly"],
},
license="Apache License 2.0",
url="https://github.com/tf-encrypted/tf-big",
Expand Down

0 comments on commit 386184e

Please sign in to comment.