Skip to content

Commit

Permalink
Merge pull request #47 from siftech/develop
Browse files Browse the repository at this point in the history
fix docker build
  • Loading branch information
danbryce authored Aug 2, 2024
2 parents 553e8db + c739312 commit 71d6de1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "1.9.0"
__version__ = "1.9.1"
2 changes: 1 addition & 1 deletion auxiliary_packages/funman_demo/src/funman_demo/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "1.9.0"
__version__ = "1.9.1"
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "1.9.0"
__version__ = "1.9.1"
2 changes: 1 addition & 1 deletion auxiliary_packages/pde2petri/src/pde2petri/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.9.0"
__version__ = "1.9.1"
5 changes: 3 additions & 2 deletions docker/dreal4/Dockerfile.dreal4
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,11 @@ RUN cd /dreal4 \
&& bazel build //:archive \
&& tar xfz bazel-bin/archive.tar.gz --strip-components 3 -C /usr \
# Install Python3 Binding
&& pip3 install wheel \
&& pip3 install --upgrade wheel \
&& pip3 install --upgrade setuptools \
&& pip3 install --upgrade pip \
&& python3 setup.py bdist_wheel \
&& DREAL_WHEEL=dreal-*-cp38-none-manylinux_$(ldd --version | grep '^ldd' | sed -E 's/^ldd.*([0-9]+)\.([0-9]+)$/\1_\2/')_$(arch).whl \
&& DREAL_WHEEL=dreal-$(python setup.py --version)-cp38-none-manylinux_$(ldd --version | grep '^ldd' | sed -E 's/^ldd.*([0-9]+)\.([0-9]+)$/\1_\2/')_$(arch).whl \
&& cp ./dist/$DREAL_WHEEL /tmp/$DREAL_WHEEL \
&& pip3 install ./dist/$DREAL_WHEEL \
&& bazel clean --expunge \
Expand Down
2 changes: 1 addition & 1 deletion src/funman/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "1.9.0"
__version__ = "1.9.1"

0 comments on commit 71d6de1

Please sign in to comment.