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

Commit

Permalink
MAINT: init file and mpl updates
Browse files Browse the repository at this point in the history
* 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`
  • Loading branch information
tylerjereddy committed Apr 13, 2020
1 parent 9da5817 commit 102f8c9
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@ build_script:
- cd scipy
- git checkout %BUILD_COMMIT%
# we use a distribution file to assist in loading
# DLLs with recent Python versions (>= 3.8)
# DLLs with recent Python versions (>= 3.7)
- ps: |
$PYTHON_VERSION = $env:PYTHON_VERSION
If ($PYTHON_VERSION -eq 3.8) {
If ($PYTHON_VERSION -ge 3.7) {
cd ..
$cwd = Get-Location
ls $cwd
Expand Down Expand Up @@ -209,14 +209,7 @@ build_script:
before_test:
# Install test requirements.
- python -m pip install pytest pytest-xdist pytest-faulthandler pytest-env Pillow mpmath
- ps: |
$PYTHON_VERSION = $env:PYTHON_VERSION
If ($PYTHON_VERSION -eq 3.8) {
python -m pip install matplotlib==3.2.0rc1
} Else {
python -m pip install matplotlib
}
- python -m pip install pytest pytest-xdist pytest-faulthandler pytest-env Pillow mpmath matplotlib

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

0 comments on commit 102f8c9

Please sign in to comment.