Skip to content

Commit

Permalink
Fix/nncase build (#823)
Browse files Browse the repository at this point in the history
* constrain conan version in wheel build

* constrain conan version to 1.59 in wheel build
  • Loading branch information
xhuohai authored Mar 2, 2023
1 parent 7494622 commit a7d893c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies = ["numpy"]
homepage = "https://github.com/kendryte/nncase"

[build-system]
requires = ["setuptools>=42", "wheel", "conan", "ninja"]
requires = ["setuptools>=42", "wheel", "conan<=1.59", "ninja"]

[tool.cibuildwheel]
build = ["cp37*", "cp38*", "cp39*", "cp310*"]
Expand All @@ -44,7 +44,7 @@ archs = ["AMD64"]
[tool.cibuildwheel.linux]
archs = ["x86_64"]
before-all = [
"pip install conan",
"pip install conan==1.59",
"conan profile new default --detect",
"conan profile update settings.compiler.libcxx=libstdc++11 default",
"wget https://sdk.lunarg.com/sdk/download/1.2.182.0/linux/vulkansdk-linux-x86_64-1.2.182.0.tar.gz -O vulkansdk.tar.gz",
Expand Down

0 comments on commit a7d893c

Please sign in to comment.