Skip to content

Commit

Permalink
Pybind11 quick fix (#451)
Browse files Browse the repository at this point in the history
* Fix pybind11 broken master

pybind11 checkout version v2.5.0, some issues are observed on master

Signed-off-by: julian <julian.burellaperez@heig-vd.ch>
  • Loading branch information
MonkeyBreaker authored Aug 8, 2020
1 parent 3b6b140 commit f65f899
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- task: Cache@2
inputs:
key: '"ccache-wheels-v2020.05.12" | $(Agent.OS) | "$(python.version)"'
key: '"ccache-wheels-v2020.08.08" | $(Agent.OS) | "$(python.version)"'
path: $(CCACHE_DIR)
displayName: ccache

Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
- task: Cache@2
inputs:
key: '"ccache-v2020.05.12" | $(Agent.OS) | "$(python.version)"'
key: '"ccache-v2020.08.08" | $(Agent.OS) | "$(python.version)"'
path: $(CCACHE_DIR)
displayName: ccache

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def install_dependencies(self):
if os.path.exists(dir_pybind11):
return 0
os.mkdir(dir_pybind11)
subprocess.check_call(['git', 'clone',
subprocess.check_call(['git', 'clone', '--branch', 'v2.5.0',
'https://github.com/pybind/pybind11.git',
dir_pybind11])

Expand Down

0 comments on commit f65f899

Please sign in to comment.