1sudo: false 2language: c 3branches: 4 except: 5 - /^[0-9]+\.[0-9]+\.[0-9]$/ 6matrix: 7 include: 8 - os: linux 9 dist: trusty 10 language: python 11 python: "2.6" 12 - os: linux 13 dist: bionic 14 language: python 15 python: "2.7" 16 - os: linux 17 dist: trusty 18 language: python 19 python: "3.2" 20 - os: linux 21 dist: trusty 22 language: python 23 python: "3.3" 24 - os: linux 25 dist: bionic 26 language: python 27 python: "3.7" 28 - os: linux 29 arch: arm64 30 dist: bionic 31 language: python 32 python: "3.7" 33 - os: linux 34 arch: ppc64le 35 dist: bionic 36 language: python 37 python: "3.7" 38 - os: linux 39 dist: xenial 40 language: python 41 python: "pypy" 42script: 43 - python run.py deps 44 - python run.py ci 45