https://github.com/inmcm/Simon_Speck_Ciphers
Raw File
Tip revision: 9eec98160fa27e73a6f3938c1af988caddb158a9 authored by Calvin McCoy on 21 July 2018, 19:07:12 UTC
More Packaging Setup Fixes
Tip revision: 9eec981
.travis.yml
language: python
python:
  - "2.6"
  - "2.7"
  - "3.5"
  - "3.6"
  - "3.7-dev"
branches:
  only:
  - master
  - inmcm/python_packaging
before_install:
    - cd Python/simonspeckciphers/
    - pip install setuptools_scm  # required for py2.6
install:
    - python setup.py install
script:
    - pytest -vvv
back to top