From 078027483556498ee1828c1914972f493923b529 Mon Sep 17 00:00:00 2001 From: Soonho Kong Date: Wed, 18 Mar 2020 20:48:15 -0400 Subject: [PATCH] chore: 4.19.03.4 --- README.md | 4 ++-- dreal/__init__.py | 2 +- setup.py | 2 +- setup/ubuntu/16.04/install.sh | 4 ++-- setup/ubuntu/18.04/install.sh | 4 ++-- tools/dreal.bzl | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index d3c65514..ba156fc6 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ sudo apt-get install curl curl -fsSL https://raw.githubusercontent.com/dreal/dreal4/master/setup/ubuntu/16.04/install.sh | sudo bash # Test the installation. -DREAL_VERSION=4.20.03.2 +DREAL_VERSION=4.20.03.4 /opt/dreal/${DREAL_VERSION}/bin/dreal ``` @@ -194,7 +194,7 @@ export PKG_CONFIG_PATH=/usr/local/opt/ibex@2.7.4/share/pkgconfig:${PKG_CONFIG_PA Ubuntu 18.04 / 16.04: ```bash -export PKG_CONFIG_PATH=/opt/dreal/4.20.03.2/lib/pkgconfig:/opt/libibex/2.7.4/share/pkgconfig:${PKG_CONFIG_PATH} +export PKG_CONFIG_PATH=/opt/dreal/4.20.03.4/lib/pkgconfig:/opt/libibex/2.7.4/share/pkgconfig:${PKG_CONFIG_PATH} ``` Then, `pkg-config dreal --cflags` and `pkg-config dreal --libs` should diff --git a/dreal/__init__.py b/dreal/__init__.py index a21bab14..8111ccf7 100644 --- a/dreal/__init__.py +++ b/dreal/__init__.py @@ -21,7 +21,7 @@ def logical_or(*formulas): return reduce(__logical_or, formulas) -__version__ = "4.20.03.2".replace(".0", ".") +__version__ = "4.20.03.4".replace(".0", ".") # Add aliases And = logical_and diff --git a/setup.py b/setup.py index 1cff1c0d..1d6f98e4 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ from setuptools.command.bdist_egg import bdist_egg as _bdist_egg from setuptools.command.develop import develop as _develop -VERSION = '4.20.03.2'.replace(".0", ".") +VERSION = '4.20.03.4'.replace(".0", ".") ROOT_DIR = os.path.abspath(os.path.dirname(__file__)) SRC_DIR = os.path.join(ROOT_DIR) diff --git a/setup/ubuntu/16.04/install.sh b/setup/ubuntu/16.04/install.sh index 928a3471..478cf6b2 100755 --- a/setup/ubuntu/16.04/install.sh +++ b/setup/ubuntu/16.04/install.sh @@ -12,10 +12,10 @@ add-apt-repository ppa:dreal/dreal -y # For libibex-dev apt-get update # Install dReal -DREAL_VERSION=4.20.03.2 +DREAL_VERSION=4.20.03.4 DREAL_DEBNAME=dreal_${DREAL_VERSION}_amd64.deb DREAL_URL=https://dl.bintray.com/dreal/dreal/${DREAL_DEBNAME} -DREAL_SHA256=3f5356d1108c4b897d9472db1947e920a99762729ffaabad66a5c08d9ccfe289 +DREAL_SHA256=a956d4dd25ebaa73c8c9468b741033034aff32893f9fbfd2950c52f588091432 apt-get install --no-install-recommends wget -y wget "${DREAL_URL}" if echo "${DREAL_SHA256} ${DREAL_DEBNAME}" | sha256sum -c; then diff --git a/setup/ubuntu/18.04/install.sh b/setup/ubuntu/18.04/install.sh index 928a3471..478cf6b2 100755 --- a/setup/ubuntu/18.04/install.sh +++ b/setup/ubuntu/18.04/install.sh @@ -12,10 +12,10 @@ add-apt-repository ppa:dreal/dreal -y # For libibex-dev apt-get update # Install dReal -DREAL_VERSION=4.20.03.2 +DREAL_VERSION=4.20.03.4 DREAL_DEBNAME=dreal_${DREAL_VERSION}_amd64.deb DREAL_URL=https://dl.bintray.com/dreal/dreal/${DREAL_DEBNAME} -DREAL_SHA256=3f5356d1108c4b897d9472db1947e920a99762729ffaabad66a5c08d9ccfe289 +DREAL_SHA256=a956d4dd25ebaa73c8c9468b741033034aff32893f9fbfd2950c52f588091432 apt-get install --no-install-recommends wget -y wget "${DREAL_URL}" if echo "${DREAL_SHA256} ${DREAL_DEBNAME}" | sha256sum -c; then diff --git a/tools/dreal.bzl b/tools/dreal.bzl index c8549d9d..5d37a4d7 100644 --- a/tools/dreal.bzl +++ b/tools/dreal.bzl @@ -1,7 +1,7 @@ # Based on Drake's drake.bzl file, # https://github.com/RobotLocomotion/drake/blob/master/tools/drake.bzl. -DREAL_VERSION = "4.20.03.2" +DREAL_VERSION = "4.20.03.4" DREAL_PREFIX = "opt/dreal/%s" % DREAL_VERSION