Skip to content

Commit 40b6190

Browse files
committed
Fix test
1 parent 12a696b commit 40b6190

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

recipe/meta.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{% set ver2 = '.'.join(version.split('.')[0:2]) %}
55
{% set ver2nd = ''.join(version.split('.')[0:2]) %}
66
{% set ver3nd = ''.join(version.split('.')[0:3]) %}
7-
{% set build_number = 2 %}
7+
{% set build_number = 3 %}
88

99
# this makes the linter happy
1010
{% set channel_targets = channel_targets or 'conda-forge main' %}
@@ -249,10 +249,8 @@ outputs:
249249
- bash build-and-test.sh # [unix]
250250
- popd # [unix]
251251
- pushd cmake
252-
{% if freethreading == "yes" %}
253-
- cmake -GNinja -DPY_VER={{ version }} --debug-find --trace --debug-output --debug-trycompile . || true # [unix]
254-
- cmake -GNinja -DPY_VER={{ version }} --debug-find --trace --debug-output --debug-trycompile . || type nul>nul # [win]
255-
{% else %}
252+
{% if freethreading == "no" %}
253+
# TODO: use the new FindPython3 which supports freethreading
256254
- cmake -GNinja -DPY_VER={{ version }} --debug-find --trace --debug-output --debug-trycompile .
257255
{% endif %}
258256
- popd

0 commit comments

Comments
 (0)