Skip to content

Commit

Permalink
Python 3.6
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Dec 27, 2016
1 parent 375b634 commit 440b56a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -13,9 +13,10 @@ python:
- '3.3'
- '3.4'
- '3.5'
- '3.6'
matrix:
include:
- python: '3.5'
- python: '3.6'
env: NMODE=flake8
env:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -3,7 +3,7 @@ build: false
environment:
matrix:
- PYTHON: "C:/Python27"
- PYTHON: "C:/Python35"
- PYTHON: "C:/Python36"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
Expand Down
4 changes: 2 additions & 2 deletions scripts/baseline.sh
@@ -1,9 +1,9 @@
#!/bin/bash
PYVER=$(scripts/getpyver.py short)
if [[ $PYVER == '3.5' || $PYVER == '2.7' ]]; then
if [[ $PYVER == '3.6' || $PYVER == '2.7' ]]; then
if [[ "$1" == "check" ]]; then
echo -e "\033[36m>> Downloading baseline for $PYVER...\033[0m"
# we only support 2.7 and 3.5
# we only support 2.7 and 3.6
wget https://github.com/getnikola/invariant-builds/archive/v$PYVER'.zip'
unzip -q 'v'$PYVER'.zip'
rm -rf baseline$PYVER
Expand Down

0 comments on commit 440b56a

Please sign in to comment.