diff --git a/appveyor.yml b/appveyor.yml index c9f2461d..b3123f7e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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% @@ -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\* diff --git a/pywt/meson.build b/pywt/meson.build index 15f69b4c..5d6eeec1 100644 --- a/pywt/meson.build +++ b/pywt/meson.build @@ -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')