https://gitlab.com/AmosEgel/smuthi
Raw File
Tip revision: 88dd13b7ee3371242c4f18cc9e071077e30f7979 authored by Lorenzo Pattelli on 05 March 2021, 10:26:05 UTC
fix saving near field to hdf5 format for Dipole sources
Tip revision: 88dd13b
.appveyor.yml
skip_non_tags: true

image:
  - Visual Studio 2019

environment:
  matrix:
    - PYTHON: "C:/Python36-x64"
    - PYTHON: "C:/Python37-x64"
    - PYTHON: "C:/Python38-x64"
    - PYTHON: "C:/Python39-x64"
  MINGW_DIR: C:/msys64/mingw64/bin
  TESTPYPI_USER: AmosEgel
  PYPI_USER: AmosEgel
  TESTPYPI_PWD:
    secure: BxIrwW5b5AUWWmOklEUAJk83XKevFd+pmaxkg0TWoWk=  
  PYPI_PWD:    
    secure: 4jygsXrcki+7XGQvOuXx0YrJJBtBXqD8eIdV//8XKXM=

clone_depth: 5

init:
  - cmd: set PATH=%MINGW_DIR%;%PATH%

build: off

after_test:
  - "%PYTHON%\\python.exe setup.py prepare"
  - "%PYTHON%\\python.exe setup.py build_ext --inplace --compiler=mingw32 --fcompiler=gnu95 -f"
  - "%PYTHON%\\python.exe setup.py bdist_wheel"
 
artifacts:
  - path: dist\*
  
deploy_script:
  - "%PYTHON%\\python.exe -m pip install twine"
#  - "%PYTHON%\\python.exe -m twine upload -u %TESTPYPI_USER% -p %TESTPYPI_PWD% --repository testpypi --skip-existing dist/*.whl"
  - "%PYTHON%\\python.exe -m twine upload -u %PYPI_USER% -p %PYPI_PWD% --skip-existing dist/*.whl"

back to top