File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ install:
6868test_script :
6969 # Now build the thing..
7070 - set LINK=/LIBPATH:%cd%\lib
71- - pip install -v --no-build-isolation --config-settings=setup-args="--vsenv" --editable .[dev]
71+ - pip install -v --no-build-isolation --config-settings=setup-args="--vsenv" .[dev]
7272 # this should show no freetype dll...
7373 - set "DUMPBIN=%VS140COMNTOOLS%\..\..\VC\bin\dumpbin.exe"
7474 - ' "%DUMPBIN%" /DEPENDENTS lib\matplotlib\ft2font*.pyd | findstr freetype.*.dll && exit /b 1 || exit /b 0'
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ commands:
122122 python -m pip install matplotlib==${version}
123123 else
124124 python -m pip install --user --verbose \
125- --no-build-isolation --editable .[dev]
125+ --no-build-isolation .[dev]
126126 fi
127127 - save_cache :
128128 key : build-deps-2
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ jobs:
208208 # constraints are held.
209209 python -m pip install --no-deps --no-build-isolation --verbose \
210210 --config-settings=setup-args="-DrcParams-backend=Agg" \
211- --editable .[dev]
211+ .[dev]
212212
213213 - name : Find DLLs to rebase
214214 shell : bash.exe -eo pipefail -o igncr "{0}"
Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ jobs:
298298
299299 python -m pip install --no-deps --no-build-isolation --verbose \
300300 --config-settings=setup-args="-DrcParams-backend=Agg" \
301- --editable .[dev]
301+ .[dev]
302302
303303 if [[ "${{ runner.os }}" != 'macOS' ]]; then
304304 unset CPPFLAGS
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ stages:
160160
161161 python -m pip install \
162162 --no-build-isolation $CONFIG \
163- --verbose --editable .[dev]
163+ --verbose .[dev]
164164 displayName: "Install self"
165165
166166 - script : env
Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ A brief overview of the workflow is as follows.
320320
321321#. Install the local version of Matplotlib with::
322322
323- python -m pip install --no-build-isolation --editable .[dev]
323+ python -m pip install --no-build-isolation .[dev]
324324
325325 See :ref:`installing_for_devs` for detailed instructions.
326326
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ Install Matplotlib in editable mode
176176Install Matplotlib in editable mode from the :file: `matplotlib ` directory using the
177177command ::
178178
179- python -m pip install --verbose --no-build-isolation --editable ".[dev]"
179+ python -m pip install --verbose --no-build-isolation ".[dev]"
180180
181181The 'editable/develop mode' builds everything and places links in your Python environment
182182so that Python will be able to import Matplotlib from your development source directory.
Original file line number Diff line number Diff line change 1+ pybind11
12meson-python
3+ cmake
4+ ninja
25numpy
3- pybind11
4- setuptools-scm
You can’t perform that action at this time.
0 commit comments