File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 10
10
- master
11
11
- v1.**
12
12
13
+ concurrency :
14
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
15
+ cancel-in-progress : true
16
+
13
17
env :
14
18
# Coloured output for GitHub Actions
15
19
FORCE_COLOR : 3
89
93
pip install ${CYTHON_MIN}
90
94
pip install ${NUMPY_MIN}
91
95
if [ "${USE_SCIPY}" == "1" ]; then pip install ${SCIPY_MIN}; fi
92
- elif [ "${OPTIONS_NAME}" == "editable-install" ]; then
93
- echo "Testing an editable installation of pywt"
94
- sudo apt-get install ninja-build
95
- pip install numpy>=2.0.0b1 cython>=3.0.4 meson-python>=0.16.0 matplotlib pytest
96
- pip install -e . --no-build-isolation
97
96
else
98
97
pip install ${PIP_FLAGS} cython
99
98
pip install ${PIP_FLAGS} numpy
@@ -112,6 +111,13 @@ jobs:
112
111
pip install . -v
113
112
fi
114
113
114
+ if [ "${OPTIONS_NAME}" == "editable-install" ]; then
115
+ echo "Testing an editable installation of pywt"
116
+ sudo apt-get install ninja-build
117
+ pip install numpy>=2.0.0b1 cython>=3.0.4 meson-python>=0.16.0 matplotlib pytest --force-reinstall
118
+ pip install -e . --no-build-isolation
119
+ fi
120
+
115
121
- name : Run tests
116
122
env :
117
123
USE_SDIST : ${{ matrix.USE_SDIST }}
You can’t perform that action at this time.
0 commit comments