diff --git a/CMakeLists.txt b/CMakeLists.txt index 261893a5..f99477cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ list(APPEND CMAKE_MODULE_PATH "${FDEEP_TOP_DIR}/cmake") include(cmake/hunter.cmake) # default off -project(frugally-deep VERSION 0.15.17) +project(frugally-deep VERSION 0.15.18) message(STATUS "===( ${PROJECT_NAME} ${PROJECT_VERSION} )===") diff --git a/INSTALL.md b/INSTALL.md index 39711819..c80996c3 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -63,7 +63,7 @@ Just add a *conanfile.txt* with frugally-deep as a requirement and chose the gen ``` [requires] -frugally-deep/v0.15.17-p0@dobiasd/stable +frugally-deep/v0.15.18-p0@dobiasd/stable [generators] cmake diff --git a/test/Dockerfile b/test/Dockerfile index 5f0a38a9..f2f1c70a 100644 --- a/test/Dockerfile +++ b/test/Dockerfile @@ -23,13 +23,13 @@ WORKDIR /tensorflow RUN ./configure RUN bazel build --jobs 3 --local_ram_resources=HOST_RAM*.3 -c opt //tensorflow/tools/pip_package:build_pip_package RUN ./bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg -RUN pip install /tmp/tensorflow_pkg/tensorflow-2.8.0-cp38-cp38-linux_x86_64.whl +RUN pip install /tmp/tensorflow_pkg/tensorflow-2.8.2-cp38-cp38-linux_x86_64.whl WORKDIR / RUN git clone -b 'v0.2.18-p0' --single-branch --depth 1 https://github.com/Dobiasd/FunctionalPlus && cd FunctionalPlus && mkdir -p build && cd build && cmake .. && make && make install RUN git clone -b '3.4.0' --single-branch --depth 1 https://gitlab.com/libeigen/eigen.git && cd eigen && mkdir -p build && cd build && cmake .. && make && make install && ln -s /usr/local/include/eigen3/Eigen /usr/local/include/Eigen RUN git clone -b 'v3.10.5' --single-branch --depth 1 https://github.com/nlohmann/json && cd json && mkdir -p build && cd build && cmake -DJSON_BuildTests=OFF .. && make && make install -RUN git clone -b 'v0.15.17-p0' --single-branch --depth 1 https://github.com/Dobiasd/frugally-deep && cd frugally-deep && mkdir -p build && cd build && cmake .. && make && make install +RUN git clone -b 'v0.15.18-p0' --single-branch --depth 1 https://github.com/Dobiasd/frugally-deep && cd frugally-deep && mkdir -p build && cd build && cmake .. && make && make install # To have downloaded the Keras models already RUN pip install numpy keras=="2.8.0" --upgrade