Updated python version to 3.7

This commit is contained in:
Nicolas Stefani 2019-09-29 21:04:21 -03:00
parent 7d0f8606ed
commit 1f68e370ee
5 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ services:
language: python
python: 3.6
python: 3.7
before_install:
- docker-compose -v
@ -14,7 +14,7 @@ before_install:
matrix:
include:
- name: Test results
script: tox -e py36
script: tox -e py37
- name: Run flake8 on result
script: tox -e flake8
- name: Run black on result

View File

@ -1,6 +1,6 @@
[tox]
skipsdist = true
envlist = py36,flake8,black,black-template
envlist = py37,flake8,black,black-template
[testenv]
deps = -rrequirements.txt

View File

@ -10,7 +10,7 @@ before_install:
- sudo apt-get install -qq libsqlite3-dev libxml2 libxml2-dev libssl-dev libbz2-dev wget curl llvm
language: python
python:
- "3.6"
- "3.7"
install:
- pip install -r requirements/local.txt
script:

View File

@ -1 +1 @@
python-3.6.8
python-3.7.3

View File

@ -7,7 +7,7 @@ max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
[mypy]
python_version = 3.6
python_version = 3.7
check_untyped_defs = True
ignore_errors = False
ignore_missing_imports = True