Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions oqs/oqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,11 @@ def _install_liboqs(
if oqs_version_to_install is None:
pass

elif "dev" in oqs_version_to_install:
# Pre-release dev versions of liboqs-python (e.g. 0.16.0.dev0,
# 0.16.0-dev) track liboqs main, since no matching tag exists.
oqs_version_to_install = None

elif "rc" in oqs_version_to_install:
# removed the "-" from the version string
tmp = oqs_version_to_install.split("rc")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "liboqs-python"
requires-python = ">=3.9"
version = "0.14.0"
version = "0.16.0-dev"
description = "Python bindings for liboqs, providing post-quantum public key cryptography algorithms"
authors = [
{ name = "Open Quantum Safe project", email = "contact@openquantumsafe.org" },
Expand Down
Loading