You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: recipe/meta.yaml
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
{% set ver2 = '.'.join(version.split('.')[0:2]) %}
5
5
{% set ver2nd = ''.join(version.split('.')[0:2]) %}
6
6
{% set ver3nd = ''.join(version.split('.')[0:3]) %}
7
-
{% set build_number = 2 %}
7
+
{% set build_number = 3 %}
8
8
9
9
# this makes the linter happy
10
10
{% set channel_targets = channel_targets or 'conda-forge main' %}
@@ -229,6 +229,13 @@ outputs:
229
229
- for f in ${CONDA_PREFIX}/lib/python*/_sysconfig*.py; do echo "Checking $f:"; if [[ `rg @[^@]*@ $f` ]]; then echo "FAILED ON $f"; cat $f; exit 1; fi; done # [linux64 or osx]
230
230
- test ! -f ${PREFIX}/lib/libpython${PKG_VERSION%.*}.a # [unix]
231
231
- test ! -f ${PREFIX}/lib/libpython${PKG_VERSION%.*}.nolto.a # [unix]
232
+
{% if freethreading == "yes" %}
233
+
- if not exist %PREFIX%\\libs\\python3t.lib exit 1 # [win]
234
+
- if not exist %PREFIX%\\libs\\python{{ ver2nd }}t.lib exit 1 # [win]
235
+
{% else %}
236
+
- if not exist %PREFIX%\\libs\\python3.lib exit 1 # [win]
237
+
- if not exist %PREFIX%\\libs\\python{{ ver2nd }}.lib exit 1 # [win]
0 commit comments