diff --git a/CMakeLists.txt b/CMakeLists.txt index 84aa5b8..541741e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,13 +4,13 @@ project (OpenFHE-Python) set(OPENFHE_PYTHON_VERSION_MAJOR 0) set(OPENFHE_PYTHON_VERSION_MINOR 8) -set(OPENFHE_PYTHON_VERSION_PATCH 5) +set(OPENFHE_PYTHON_VERSION_PATCH 6) set(OPENFHE_PYTHON_VERSION ${OPENFHE_PYTHON_VERSION_MAJOR}.${OPENFHE_PYTHON_VERSION_MINOR}.${OPENFHE_PYTHON_VERSION_PATCH}) set(CMAKE_CXX_STANDARD 17) option( BUILD_STATIC "Set to ON to include static versions of the library" OFF) -find_package(OpenFHE 1.1.2 REQUIRED) +find_package(OpenFHE 1.1.3 REQUIRED) find_package(pybind11 REQUIRED) set( CMAKE_CXX_FLAGS ${OpenFHE_CXX_FLAGS} ) diff --git a/README.md b/README.md index 77fff38..ed582ef 100644 --- a/README.md +++ b/README.md @@ -22,12 +22,10 @@ Please see [Instructions for the Docker setup](docker/README.md) Before building, make sure you have the following dependencies installed: -- [OpenFHE 1.1.2](https://github.com/openfheorg/openfhe-development/tree/v1.1.2) by following the instructions on [OpenFHE Documentation](https://openfhe-development.readthedocs.io/en/latest/sphinx_rsts/intro/installation/installation.html) +- [OpenFHE 1.1.3+](https://github.com/openfheorg/openfhe-development) by following the instructions on [OpenFHE Documentation](https://openfhe-development.readthedocs.io/en/latest/sphinx_rsts/intro/installation/installation.html) - [Python 3.6+](https://www.python.org/) - [pybind11](https://pybind11.readthedocs.io/en/stable/installing.html) -Note that currently OpenFHE 1.1.3 is not supported by the Python wrapper. The support will be added later. - We recommend following OpenFHE C++ installation instructions first (which covers Linux, Windows and MacOS) and then get back to this repo. See notes on installing `pybind11` below ### Linux