update python version travis.yml

This commit is contained in:
Rohit Tanwar
2018-02-13 21:41:23 +05:30
parent 9e26ecd28c
commit 83e13b0b6f
2 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@ cache:
directories:
- __pycache__
python:
- "3.6.2"
- "3.8"
before_install:
- sudo pip install -r requirements.txt
script:

View File

@ -1,6 +1,8 @@
import autopep8
import re
import os
import sys
print(sys.version)
files = os.listdir('snippets')
codeRe = "```\s*python([\s\S]*?)```"
for file in files: