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 # ref: https://docs.travis-ci.com/user/languages/python
language: python language: python
python: python:
- "2.7" - "3.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
# command to install dependencies # command to install dependencies
install: "pip install -r requirements.txt" install: "pip install -r requirements.txt"
# command to run tests # command to run tests
......
FROM python:2-alpine FROM python:3.7-alpine
RUN mkdir -p /usr/src/app RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app WORKDIR /usr/src/app
......
[tox] [tox]
envlist = py27, py35 envlist = py37
[testenv] [testenv]
deps=-r{toxinidir}/requirements.txt 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