We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4406b1d commit bc3c14aCopy full SHA for bc3c14a
nc_py_api/_version.py
@@ -1,3 +1,3 @@
1
""" Version of Nc_Py_Api """
2
3
-__version__ = "0.0.8"
+__version__ = "0.0.9"
nc_py_api/db_misc.py
@@ -1,5 +1,10 @@
from datetime import datetime
+try:
4
+ from nacl import bindings # pylint: disable=unused-import
5
+except ImportError:
6
+ bindings = None
7
+
8
from .config import CONFIG
9
10
setup.cfg
@@ -31,6 +31,8 @@ packages = find:
31
install_requires =
32
pg8000
33
pymysql
34
+ pynacl
35
+ cryptography
36
37
[options.extras_require]
38
dev =
0 commit comments