Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit 102f8c9

Browse files
committed
MAINT: init file and mpl updates
* we've been getting reports of new Python 3.7 patch releases from Windows store causing SciPy DLL load issues: scipy/scipy#11826 * so, extend the `_distributor_init.py` machinery usage to include Python 3.7 and up for our wheels * simplify the appveyor `matplotlib` install now that there are stable releases available for Python `3.8`
1 parent 9da5817 commit 102f8c9

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

appveyor.yml

+3-10
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,10 @@ build_script:
166166
- cd scipy
167167
- git checkout %BUILD_COMMIT%
168168
# we use a distribution file to assist in loading
169-
# DLLs with recent Python versions (>= 3.8)
169+
# DLLs with recent Python versions (>= 3.7)
170170
- ps: |
171171
$PYTHON_VERSION = $env:PYTHON_VERSION
172-
If ($PYTHON_VERSION -eq 3.8) {
172+
If ($PYTHON_VERSION -ge 3.7) {
173173
cd ..
174174
$cwd = Get-Location
175175
ls $cwd
@@ -209,14 +209,7 @@ build_script:
209209
210210
before_test:
211211
# Install test requirements.
212-
- python -m pip install pytest pytest-xdist pytest-faulthandler pytest-env Pillow mpmath
213-
- ps: |
214-
$PYTHON_VERSION = $env:PYTHON_VERSION
215-
If ($PYTHON_VERSION -eq 3.8) {
216-
python -m pip install matplotlib==3.2.0rc1
217-
} Else {
218-
python -m pip install matplotlib
219-
}
212+
- python -m pip install pytest pytest-xdist pytest-faulthandler pytest-env Pillow mpmath matplotlib
220213

221214
# Upgrade numpy to the version used for testing
222215
- python -m pip install "%NUMPY_TEST_DEP%"

0 commit comments

Comments
 (0)