Browse Source

Merge pull request #118 from openfheorg/update-to-0.8.6

Updates to 0.8.6
yspolyakov 7 months ago
parent
commit
63a40fd69c
2 changed files with 3 additions and 5 deletions
  1. 2 2
      CMakeLists.txt
  2. 1 3
      README.md

+ 2 - 2
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} )

+ 1 - 3
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