Skip to content

Commit

Permalink
Merge branch 'main' into CalMacCQ-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
CalMacCQ authored Aug 16, 2024
2 parents a986248 + 1db5d73 commit f76035a
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 23 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-without-conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ jobs:
- name: Install catch2
run: |
cd ${TMP_DIR}
wget https://github.com/catchorg/Catch2/archive/refs/tags/v3.6.0.tar.gz
tar xzvf v3.6.0.tar.gz
cd Catch2-3.6.0/
wget https://github.com/catchorg/Catch2/archive/refs/tags/v3.7.0.tar.gz
tar xzvf v3.7.0.tar.gz
cd Catch2-3.7.0/
mkdir build
cd build
cmake -GNinja -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} ..
Expand All @@ -96,9 +96,9 @@ jobs:
- name: Install pybind11
run: |
cd ${TMP_DIR}
wget https://github.com/pybind/pybind11/archive/refs/tags/v2.13.3.tar.gz
tar xzvf v2.13.3.tar.gz
cd pybind11-2.13.3/
wget https://github.com/pybind/pybind11/archive/refs/tags/v2.13.4.tar.gz
tar xzvf v2.13.4.tar.gz
cd pybind11-2.13.4/
mkdir build
cd build
cmake -GNinja -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} -DPYBIND11_TEST=OFF ..
Expand Down
12 changes: 6 additions & 6 deletions build-without-conan.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ cmake --install .

```
cd ${TMP_DIR}
wget https://github.com/catchorg/Catch2/archive/refs/tags/v3.6.0.tar.gz
tar xzvf v3.6.0.tar.gz
cd Catch2-3.6.0/
wget https://github.com/catchorg/Catch2/archive/refs/tags/v3.7.0.tar.gz
tar xzvf v3.7.0.tar.gz
cd Catch2-3.7.0/
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} ..
Expand All @@ -119,9 +119,9 @@ cmake --install .

```
cd ${TMP_DIR}
wget https://github.com/pybind/pybind11/archive/refs/tags/v2.13.3.tar.gz
tar xzvf v2.13.3.tar.gz
cd pybind11-2.13.3/
wget https://github.com/pybind/pybind11/archive/refs/tags/v2.13.4.tar.gz
tar xzvf v2.13.4.tar.gz
cd pybind11-2.13.4/
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} -DPYBIND11_TEST=OFF ..
Expand Down
2 changes: 1 addition & 1 deletion libs/tkassert/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ def package(self):

def requirements(self):
self.requires("tkassert/0.3.4")
self.requires("catch2/3.6.0")
self.requires("catch2/3.7.0")
2 changes: 1 addition & 1 deletion libs/tklog/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ def package(self):

def requirements(self):
self.requires("tklog/0.3.3")
self.requires("catch2/3.6.0")
self.requires("catch2/3.7.0")
2 changes: 1 addition & 1 deletion libs/tkrng/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ def package(self):

def requirements(self):
self.requires("tkrng/0.3.3")
self.requires("catch2/3.6.0")
self.requires("catch2/3.7.0")
2 changes: 1 addition & 1 deletion libs/tktokenswap/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ def package(self):
def requirements(self):
self.requires("tktokenswap/0.3.8")
self.requires("tkrng/0.3.3@tket/stable")
self.requires("catch2/3.6.0")
self.requires("catch2/3.7.0")
2 changes: 1 addition & 1 deletion libs/tkwsm/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ def requirements(self):
self.requires("tkwsm/0.3.8")
self.requires("tkassert/0.3.4@tket/stable")
self.requires("tkrng/0.3.3@tket/stable")
self.requires("catch2/3.6.0")
self.requires("catch2/3.7.0")
4 changes: 2 additions & 2 deletions pytket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ def package(self):
cmake.install()

def requirements(self):
self.requires("tket/1.3.18@tket/stable")
self.requires("tket/1.3.19@tket/stable")
self.requires("tklog/0.3.3@tket/stable")
self.requires("tkrng/0.3.3@tket/stable")
self.requires("tkassert/0.3.4@tket/stable")
self.requires("tkwsm/0.3.8@tket/stable")
self.requires("tktokenswap/0.3.8@tket/stable")
self.requires("symengine/0.12.0")
self.requires("gmp/6.3.0")
self.requires("pybind11/2.13.3")
self.requires("pybind11/2.13.4")
self.requires("nlohmann_json/3.11.3")
self.requires("pybind11_json/0.2.14")
2 changes: 1 addition & 1 deletion recipes/pybind11/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

class PyBind11Conan(ConanFile):
name = "pybind11"
version = "2.13.3"
version = "2.13.4"
description = "Seamless operability between C++11 and Python"
topics = "pybind11", "python", "binding"
homepage = "https://github.com/pybind/pybind11"
Expand Down
2 changes: 1 addition & 1 deletion recipes/pybind11_json/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def package_id(self):

def requirements(self):
self.requires("nlohmann_json/3.11.3")
self.requires("pybind11/2.13.3")
self.requires("pybind11/2.13.4")

def source(self):
get(
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.18"
version = "1.3.19"
package_type = "library"
license = "Apache 2"
homepage = "https://github.com/CQCL/tket"
Expand Down Expand Up @@ -121,7 +121,7 @@ def requirements(self):
self.requires("tktokenswap/0.3.8@tket/stable")
self.requires("tkwsm/0.3.8@tket/stable")
if self.build_test():
self.test_requires("catch2/3.6.0")
self.test_requires("catch2/3.7.0")
if self.build_proptest():
self.test_requires("rapidcheck/cci.20230815")

Expand Down

0 comments on commit f76035a

Please sign in to comment.