Skip to content

Commit a703d71

Browse files
committed
Update for latest version of rattler-build
1 parent 0810078 commit a703d71

File tree

3 files changed

+70
-67
lines changed

3 files changed

+70
-67
lines changed

conda_build_config.yaml

Lines changed: 24 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,35 @@ spdlog:
99
pugixml:
1010
- '1.14'
1111

12-
cdt_name:
13-
- ${{ "cos7" if linux }}
12+
cdt_name: # [linux]
13+
- conda # [linux]
1414

1515
python:
1616
- 3.11.* *_cpython
1717
python_impl:
1818
- cpython
1919

20-
c_stdlib:
21-
- ${{ "sysroot" if linux }}
22-
- ${{ "macosx_deployment_target" if osx }}
23-
- ${{ "vs" if win }}
24-
c_stdlib_version:
25-
- ${{ "2.17" if linux }}
26-
- ${{ "10.14" if osx and x86_64 }}
27-
- ${{ "11.0" if osx and arm64 }}
2820
c_compiler:
29-
- ${{ "gcc" if linux }}
30-
- ${{ "clang" if osx }}
31-
- ${{ "vs2019" if win }}
21+
- gcc # [linux]
22+
- clang # [osx]
23+
- vs2019 # [win and x86_64]
24+
- vs2022 # [win and arm64]
25+
c_compiler_version: # [unix]
26+
- 13 # [linux]
27+
- 18 # [osx]
28+
c_stdlib:
29+
- sysroot # [linux]
30+
- macosx_deployment_target # [osx]
31+
- vs # [win]
32+
c_stdlib_version: # [unix]
33+
- 2.17 # [linux]
34+
- 10.13 # [osx and x86_64]
35+
- 11.0 # [osx and arm64]
3236
cxx_compiler:
33-
- ${{ "gxx" if linux }}
34-
- ${{ "clangxx" if osx }}
35-
- ${{ "vs2019" if win }}
37+
- gxx # [linux]
38+
- clangxx # [osx]
39+
- vs2019 # [win and x86_64]
40+
- vs2022 # [win and arm64]
41+
cxx_compiler_version: # [unix]
42+
- 13 # [linux]
43+
- 18 # [osx]

pixi.lock

Lines changed: 44 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pixi.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ upload = "anaconda -t $ANACONDA_API_TOKEN upload"
1616

1717
[dependencies]
1818
python = ">=3.11.0,<3.12"
19-
rattler-build = ">=0.33.2"
19+
rattler-build = ">=0.35.5"
2020
anaconda-client = ">=1.12"
2121

2222
[target.win-64.dependencies]
@@ -27,7 +27,7 @@ git = "*"
2727

2828
[feature.beta.pypi-dependencies]
2929
# This is tipically the latest commit on main branch
30-
vinca = { git ="https://github.com/RoboStack/vinca.git", rev = "a081fad2b1d72cfa4c3cc30010dae024ade79d0c" }
30+
vinca = { git ="https://github.com/RoboStack/vinca.git", rev = "cbb8eba834ce3834df552977d6b08c325a30768e" }
3131
# Uncomment this line to work with a local vinca for faster iteration, but remember to comment it back
3232
# (and regenerate the pixi.lock) once you push the modified commit to the repo
3333
#vinca = { path = "../vinca", editable = true }

0 commit comments

Comments
 (0)