We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b629da commit 560670dCopy full SHA for 560670d
1 file changed
.github/workflows/build_wheels_macos_m1.yml
@@ -36,6 +36,19 @@ jobs:
36
ENABLE_CONTRIB: ${{ matrix.with_contrib }}
37
PIP_INDEX_URL: https://pypi.tuna.tsinghua.edu.cn/simple
38
steps:
39
+ - name: Check pyenv versions
40
+ run: pyenv versions
41
+
42
+ - name: Check Python versions
43
+ run: |
44
+ python3.7 --version || echo "python3.7 not found"
45
+ python3.8 --version || echo "python3.8 not found"
46
+ python3.9 --version || echo "python3.9 not found"
47
+ python3.10 --version || echo "python3.10 not found"
48
+ python3.11 --version || echo "python3.11 not found"
49
+ python3.12 --version || echo "python3.12 not found"
50
+ python3.13 --version || echo "python3.13 not found"
51
52
- name: Cleanup
53
run: find . -mindepth 1 -delete
54
working-directory: ${{ github.workspace }}
0 commit comments