Skip to content

Commit

Permalink
Merge pull request #680 from rgommers/fix-appveyor
Browse files Browse the repository at this point in the history
CI: limit contourpy to <1.1, to avoid building win32 from source
  • Loading branch information
rgommers committed Aug 22, 2023
2 parents 367ae36 + bbf5bea commit 7b88a37
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 1 addition & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ install:
- cmd: set PATH=%cd%;%PYTHON_ROOT%;%PYTHON_ROOT%\Scripts;%PATH%
- "python.exe -m pip install --upgrade pip build"
- "python.exe -m pip install numpy --cache-dir c:\\tmp\\pip-cache"
- "python.exe -m pip install Cython pytest matplotlib --cache-dir c:\\tmp\\pip-cache"
- "python.exe -m pip install --only-binary :all: Cython pytest matplotlib --cache-dir c:\\tmp\\pip-cache"

test_script:
- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" %arch%
Expand All @@ -30,9 +30,6 @@ test_script:
- "python.exe -m pytest --pyargs pywt"
- "cd .."

after_test:
- "python.exe -m build --wheel -Csetup-args=--vsenv"

artifacts:
# Archive the generated wheel package in the ci.appveyor.com build report.
- path: dist\*
Expand Down
1 change: 0 additions & 1 deletion pywt/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ _c99_config = configure_file(

install_subdir('data', install_dir: py.get_install_dir() / 'pywt')
install_subdir('tests', install_dir: py.get_install_dir() / 'pywt')
install_subdir('tests/data', install_dir: py.get_install_dir() / 'pywt/tests')

# Copy needed for Cython code in _extensions
__init__py = fs.copyfile('__init__.py')
Expand Down

0 comments on commit 7b88a37

Please sign in to comment.