Skip to content

Commit

Permalink
Fix conan build on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-ogre committed Sep 28, 2023
1 parent 9edce77 commit 1f8cf9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'

Expand Down
4 changes: 2 additions & 2 deletions CDT/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ class CDTConan(ConanFile):

def requirements(self):
if self.options.use_boost:
self.requires("boost/1.81.0")
self.requires("catch2/3.3.1")
self.requires("boost/1.83.0")
self.requires("catch2/3.4.0")

def configure(self):
if self.options.use_boost:
Expand Down

0 comments on commit 1f8cf9c

Please sign in to comment.