Skip to content

Commit

Permalink
Deprecate support for Python 3.5 and below (#338)
Browse files Browse the repository at this point in the history
* Deprecate support for Python 3.5 and below

* Rectify style check

Co-authored-by: Chinmay Shah <[email protected]>
  • Loading branch information
festusdrakon and chinmayshah99 authored Mar 21, 2021
1 parent d76eccd commit de7094f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ privacy guarantee and accuracy of your model written in Python.
- All the computation methods mentioned above use Laplace noise only (other noise mechanisms will be added soon! :smiley:).

- ::fire: Currently supports Linux and macOS (Windows support coming soon :smiley:)
- ::star: Use Python 3.6 and above. Support for Python 3.5 is being deprecated.
- ::star: Use Python 3.6+. Support for Python 3.5 and below is deprecated.


Installation
------------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def read(fname):
package_data={"pydp": ["_pydp.so", "_pydp.pyd"],},
packages=find_packages(where="src", exclude=["tests"]),
setup_requires=setup_requirements,
python_requires=">=3.6",
test_suite="tests",
url="https://github.com/OpenMined/PyDP",
version="1.0.2",
Expand Down

0 comments on commit de7094f

Please sign in to comment.