Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2455837

Browse files
committed
test it
1 parent 7302c6d commit 2455837

8 files changed

Lines changed: 10 additions & 9 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ install:
6868
test_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'

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

.github/workflows/cygwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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}"

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

doc/devel/contribute.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

doc/devel/development_setup.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Install Matplotlib in editable mode
176176
Install Matplotlib in editable mode from the :file:`matplotlib` directory using the
177177
command ::
178178

179-
python -m pip install --verbose --no-build-isolation --editable ".[dev]"
179+
python -m pip install --verbose --no-build-isolation ".[dev]"
180180

181181
The 'editable/develop mode' builds everything and places links in your Python environment
182182
so that Python will be able to import Matplotlib from your development source directory.

requirements/build/build-requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1+
pybind11
12
meson-python
3+
cmake
4+
ninja
25
numpy
3-
pybind11
4-
setuptools-scm

0 commit comments

Comments
 (0)