snappass/.travis.yml
Jon Parise 35c19a2ae2
Drop support for old Python versions (#149)
Specifically, drop support for Python versions older than 3.7, including
Python 2.x.

All of those versions are well beyond their official end-of-life, and
given this is a security-related project, it's reasonable to expect
users to run it in a modern Python environment.
2022-05-17 10:25:03 -07:00

16 lines
189 B
YAML

branches:
only:
- "master"
language: python
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
cache: pip
install:
- pip install tox-travis
script:
- tox
services:
- redis-server