We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b74ed89 commit c066152Copy full SHA for c066152
oqs/oqs.py
@@ -30,7 +30,7 @@ def oqs_python_version():
30
31
# liboqs-python tries to automatically install and load this liboqs version in
32
# case no other version is found
33
-REQUIRE_OQS_VERSION = oqs_python_version()
+OQS_VERSION = oqs_python_version()
34
35
36
def _countdown(seconds):
@@ -120,9 +120,7 @@ def _load_liboqs():
120
assert _liboqs
121
except RuntimeError:
122
# We don't have liboqs, so we try to install it automatically
123
- _install_liboqs(
124
- target_directory=oqs_install_dir, oqs_version=REQUIRE_OQS_VERSION
125
- )
+ _install_liboqs(target_directory=oqs_install_dir, oqs_version=OQS_VERSION)
126
# Try loading it again
127
try:
128
_liboqs = _load_shared_obj(
0 commit comments