Skip to content
Snippets Groups Projects
Commit b28fb2c2 authored by David Trattnig's avatar David Trattnig
Browse files

Python >= 3.7 only.

parent 968d58d8
No related branches found
No related tags found
No related merge requests found
# ref: https://docs.travis-ci.com/user/languages/python
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # points to the latest development branch e.g. 3.6-dev
- "3.7"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
......
FROM python:2-alpine
FROM python:3.7-alpine
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
......
[tox]
envlist = py27, py35
envlist = py37
[testenv]
deps=-r{toxinidir}/requirements.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment