Revision 74ffd2c96edf6e861b71ba9a2d623b87b0ce6e4c authored by Daniel Himmelstein on 10 December 2019, 16:09:23 UTC, committed by GitHub on 10 December 2019, 16:09:23 UTC
merges https://github.com/hetio/hetnetpy/pull/48

python 3.4 began failing builds https://travis-ci.com/hetio/hetnetpy/jobs/265318129#L209
3.4 past official end of life
1 parent 02b3131
Raw File
.appveyor.yml
environment:

  image: Visual Studio 2017

  matrix:
    - PYTHON: "C:\\Python36"
      PYTHON_VERSION: "3.6.x"
      PYTHON_ARCH: "32"
    - PYTHON: "C:\\Python36-x64"
      PYTHON_VERSION: "3.6.x"
      PYTHON_ARCH: "64"
    - PYTHON: "C:\\Python37-x64"
      PYTHON_VERSION: "3.7.x"
      PYTHON_ARCH: "64"

build: off

cache:
  - '%LOCALAPPDATA%\pip\Cache -> .appveyor.yml, setup.py'

install:
  - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
  - "python -m pip install --upgrade pip"
  - "%CMD_IN_ENV% pip install .[test]"

test_script:
  - "%CMD_IN_ENV% pytest"
back to top