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
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -229,8 +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 not exist %PREFIX%\\libs\\python3.lib exit 1 # [win]
233
-
- if not exist %PREFIX%\\libs\\python3{{ ver2nd }}.lib exit 1 # [win]
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
+
{%e 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