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
# <frozen importlib._bootstrap>:491: Warning: Numpy built with MINGW-W64 on Windows 64 bits is experimental, and only available for testing. You are advised not to use it for production.
46
+
- os: windows-2022
47
+
py_version: "3.14"
48
+
49
+
- os: windows-2022
50
+
py_version: "3.14t"
51
+
45
52
name: "${{ matrix.os }}-${{ matrix.py_version }}"
46
53
47
54
steps:
48
55
- name: Checkout
49
56
uses: actions/checkout@v2
50
57
51
58
- name: Setup Python
52
-
uses: actions/setup-python@v4
59
+
uses: actions/setup-python@v5.6
53
60
with:
54
61
python-version: ${{ matrix.py_version }}
55
62
allow-prereleases: true
56
63
57
64
- name: Install and configure
58
65
shell: bash
59
66
run: |
60
-
if [ ${{ matrix.py_version }} == '3.9' ]; then
67
+
61
68
pip install .[test,mlir] -v
62
-
else
63
-
pip install .[test,mlir,eudsl] -v
64
-
fi
65
-
69
+
66
70
- name: Test
67
71
shell: bash
68
72
run: |
69
73
70
-
pytest -v tests
74
+
# so that loaded modules isn't reused between modules
# <frozen importlib._bootstrap>:491: Warning: Numpy built with MINGW-W64 on Windows 64 bits is experimental, and only available for testing. You are advised not to use it for production.
# <frozen importlib._bootstrap>:491: Warning: Numpy built with MINGW-W64 on Windows 64 bits is experimental, and only available for testing. You are advised not to use it for production.
0 commit comments