https://github.com/dchest/pyblake2
Raw File
Tip revision: 646d0a55da24196c5312b35573598cd18f8137b1 authored by Dmitry Chestnykh on 14 September 2020, 14:32:33 UTC
EOL
Tip revision: 646d0a5
.travis.yml
language: python

python:
    - "2.7"
    - "3.4"
    - "3.5"
    - "3.6"
    - pypy
    - pypy3

install:
    - "pip install sphinx"

script:
    - "python setup.py install"
    - "python test/test.py"
    - "cd doc_src"
    - "make doctest"

back to top