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
# check for unreplaced @ symbols in sysconfig files, excluding e.g. '"$@".lto'
249
248
- 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]
250
-
- test ! -f ${PREFIX}/lib/libpython${PKG_VERSION%.*}.a # [unix]
251
-
- test ! -f ${PREFIX}/lib/libpython${PKG_VERSION%.*}.nolto.a # [unix]
249
+
- test ! -f ${PREFIX}/lib/libpython${PKG_VERSION%.*}.so # [unix]
250
+
- test ! -f ${PREFIX}/lib/libpython${PKG_VERSION%.*}.a # [unix]
251
+
- test ! -f ${PREFIX}/lib/libpython${PKG_VERSION%.*}.so # [linux]
252
+
- test ! -f ${PREFIX}/lib/libpython${PKG_VERSION%.*}.dylib # [osx]
253
+
- test ! -f ${PREFIX}/lib/libpython${PKG_VERSION%.*}.nolto.a # [unix]
252
254
{% if freethreading == "yes" %}
253
255
- if not exist %PREFIX%\\libs\\python3t.lib exit 1 # [win]
254
256
- if not exist %PREFIX%\\libs\\python{{ ver2nd }}t.lib exit 1 # [win]
@@ -265,14 +267,8 @@ outputs:
265
267
- if not exist %PREFIX%\\Scripts\\pydoc.exe exit 1 # [win]
266
268
- if not exist %PREFIX%\\include\\pyconfig.h exit 1 # [win]
267
269
- pushd tests
268
-
- pushd prefix-replacement # [unix]
269
-
- bash build-and-test.sh # [unix]
270
-
- popd # [unix]
271
270
- pushd cmake
272
-
{% if freethreading == "no" %}
273
-
# TODO: use the new FindPython3 which supports freethreading
0 commit comments