mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-23 05:00:07 +00:00
28 lines
506 B
YAML
28 lines
506 B
YAML
language: python
|
|
|
|
python:
|
|
# - '3.5'
|
|
# - '2.7'
|
|
# - '3.4'
|
|
- '3.6'
|
|
- '3.8'
|
|
|
|
matrix:
|
|
include:
|
|
- python: '3.7'
|
|
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
|
|
|
|
install:
|
|
# Remove the next line when xdis 6.0.0 is released
|
|
# - pip install git://github.com/rocky/python-xdis.git#egg=xdis
|
|
- pip install -e .
|
|
- pip install -r requirements-dev.txt
|
|
|
|
script:
|
|
- python ./setup.py develop && COMPILE='--compile' make check
|
|
|
|
# blacklist
|
|
branches:
|
|
except:
|
|
- data-driven-pytest
|