Skip to content

Commit

Permalink
Update to symengine 0.13.0 (#1666)
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-alec authored Nov 12, 2024
1 parent c375eae commit 5055846
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-without-conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
- name: Install symengine
run: |
cd ${TMP_DIR}
wget https://github.com/symengine/symengine/archive/refs/tags/v0.12.0.tar.gz
tar xzvf v0.12.0.tar.gz
cd symengine-0.12.0/
wget https://github.com/symengine/symengine/archive/refs/tags/v0.13.0.tar.gz
tar xzvf v0.13.0.tar.gz
cd symengine-0.13.0/
mkdir build
cd build
cmake -GNinja -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} -DBUILD_TESTS=OFF -DBUILD_BENCHMARKS=OFF ..
Expand Down
6 changes: 3 additions & 3 deletions build-without-conan.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ make install

```
cd ${TMP_DIR}
wget https://github.com/symengine/symengine/archive/refs/tags/v0.12.0.tar.gz
tar xzvf v0.12.0.tar.gz
cd symengine-0.12.0/
wget https://github.com/symengine/symengine/archive/refs/tags/v0.13.0.tar.gz
tar xzvf v0.13.0.tar.gz
cd symengine-0.13.0/
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} -DBUILD_TESTS=OFF -DBUILD_BENCHMARKS=OFF ..
Expand Down
4 changes: 2 additions & 2 deletions pytket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ def requirements(self):
self.requires("nlohmann_json/3.11.3")
self.requires("pybind11/2.13.6")
self.requires("pybind11_json/0.2.14")
self.requires("symengine/0.12.0")
self.requires("symengine/0.13.0")
self.requires("tkassert/0.3.4@tket/stable")
self.requires("tket/1.3.45@tket/stable")
self.requires("tket/1.3.46@tket/stable")
self.requires("tklog/0.3.3@tket/stable")
self.requires("tkrng/0.3.3@tket/stable")
self.requires("tktokenswap/0.3.9@tket/stable")
Expand Down
4 changes: 2 additions & 2 deletions tket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

class TketConan(ConanFile):
name = "tket"
version = "1.3.45"
version = "1.3.46"
package_type = "library"
license = "Apache 2"
homepage = "https://github.com/CQCL/tket"
Expand Down Expand Up @@ -114,7 +114,7 @@ def requirements(self):
self.requires("boost/1.86.0", transitive_headers=True)
self.requires("eigen/3.4.0", transitive_headers=True)
self.requires("nlohmann_json/3.11.3", transitive_headers=True)
self.requires("symengine/0.12.0", transitive_headers=True)
self.requires("symengine/0.13.0", transitive_headers=True)
self.requires("tkassert/0.3.4@tket/stable", transitive_headers=True)
self.requires("tklog/0.3.3@tket/stable")
self.requires("tkrng/0.3.3@tket/stable")
Expand Down

0 comments on commit 5055846

Please sign in to comment.