Skip to content

Commit

Permalink
Fixing pycryptominisat build
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Sep 21, 2023
1 parent ffc7f2b commit c02904b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -452,7 +452,7 @@ else()
set(GIT_SHA "GIT-hash-notfound")
endif()

set(CMS_FULL_VERSION "5.11.13")
set(CMS_FULL_VERSION "5.11.14")

string(REPLACE "." ";" CMS_FULL_VERSION_LIST ${CMS_FULL_VERSION})
SetVersionNumber("PROJECT" ${CMS_FULL_VERSION_LIST})
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pycryptosat"
version = "5.11.13"
version = "5.11.14"
description = "Bindings to CryptoMiniSat, an advanced SAT solver"
keywords = ["sat", "cryptography"]
license = { file = "LICENSE.txt" }
Expand Down
2 changes: 0 additions & 2 deletions python/src/pycryptosat.cpp
Expand Up @@ -686,8 +686,6 @@ static PyObject* solve(Solver *self, PyObject *args, PyObject *kwds)
lbool res;
Py_BEGIN_ALLOW_THREADS /* release GIL */
res = self->cmsat->solve(&assumption_lits);
signal(SIGINT, old_sig_int_handler);
signal(SIGTERM, old_sig_term_handler);
Py_END_ALLOW_THREADS

self->cmsat->set_verbosity(self->verbose);
Expand Down

0 comments on commit c02904b

Please sign in to comment.