35c19a2ae2
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.
16 lines
189 B
YAML
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
|