https://github.com/dhimmel/hetio
Raw File
Tip revision: 74ffd2c96edf6e861b71ba9a2d623b87b0ce6e4c authored by Daniel Himmelstein on 10 December 2019, 16:09:23 UTC
retire python 3.4, add python 3.8 (#48)
Tip revision: 74ffd2c
.travis.yml
dist: bionic
sudo: false
language: python
python:
  - "3.5"
  - "3.6"
  - "3.7"
  - "3.8"
cache:
  - pip
install:
  - pip install ".[test]"
  - python setup.py sdist bdist_wheel
script:
  - pytest test
  - if black --version ; then black --check . ; fi
deploy:
  - provider: pypi
    user: __token__
    password: $pypi_password
    on:
      python: '3.8'
      repo: hetio/hetnetpy
      tags: true
    distributions: sdist bdist_wheel
back to top