Skip to content

Commit

Permalink
Update to 2.13.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-alec committed Aug 14, 2024
1 parent ffba3f4 commit 4243d5b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 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 @@ -96,9 +96,9 @@ jobs:
- name: Install pybind11
run: |
cd ${TMP_DIR}
wget https://github.com/pybind/pybind11/archive/refs/tags/v2.13.2.tar.gz
tar xzvf v2.13.2.tar.gz
cd pybind11-2.13.2/
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/
mkdir build
cd build
cmake -GNinja -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} -DPYBIND11_TEST=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 @@ -119,9 +119,9 @@ cmake --install .

```
cd ${TMP_DIR}
wget https://github.com/pybind/pybind11/archive/refs/tags/v2.13.2.tar.gz
tar xzvf v2.13.2.tar.gz
cd pybind11-2.13.2/
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/
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} -DPYBIND11_TEST=OFF ..
Expand Down
2 changes: 1 addition & 1 deletion pytket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ def requirements(self):
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.2")
self.requires("pybind11/2.13.3")
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.2"
version = "2.13.3"
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.2")
self.requires("pybind11/2.13.3")

def source(self):
get(
Expand Down

0 comments on commit 4243d5b

Please sign in to comment.