File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ privacy guarantee and accuracy of your model written in Python.
2929 - All the computation methods mentioned above use Laplace noise only (other noise mechanisms will be added soon! :smiley: ).
3030
3131- ::fire: Currently supports Linux and macOS (Windows support coming soon :smiley: )
32- - ::star: Use Python 3.x .
32+ - ::star: Use Python 3.6 and above. Support for Python 3.5 is being deprecated .
3333
3434Installation
3535------------
Original file line number Diff line number Diff line change 22
33
44__version__ = "1.0.1"
5+
6+
7+ import sys
8+
9+ # assert sys.version_info >= (3, 6)
10+ if sys .version_info < (3 , 6 ):
11+ print ("WARN: Support for Python 3.5 and below is being deprecated. \
12+ Please upgrade your version." )
You can’t perform that action at this time.
0 commit comments