We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
subprocess
1 parent de51d40 commit 089fe86Copy full SHA for 089fe86
.appveyor.yml
@@ -95,6 +95,12 @@ install:
95
# pytest-cov>=2.3.1 due to https://github.com/pytest-dev/pytest-cov/issues/124
96
- pip install -q pytest "pytest-cov>=2.3.1" pytest-rerunfailures pytest-timeout
97
98
+ # Apply patch to `subprocess` on Python versions > 2 and < 3.6.3
99
+ # https://github.com/matplotlib/matplotlib/issues/9176
100
+ - python -c "import sys; sys.exit(not (3,) < sys.version_info < (3,6,3))" && (
101
+ curl -sL https://github.com/python/cpython/pull/1224.patch |
102
+ patch -fsup 1 -d %CONDA_PREFIX% ) || ( set errorlevel= )
103
+
104
# Let the install prefer the static builds of the libs
105
- set LIBRARY_LIB=%CONDA_PREFIX%\Library\lib
106
- mkdir lib || cmd /c "exit /b 0"
0 commit comments