Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update circle.yml
  • Loading branch information
cclauss authored Aug 23, 2017
commit 57f975e3f2172b7a571180e9662b47ef2d8c8db5
8 changes: 4 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ jobs:
build:
working_directory: ~/sc2reader
docker:
- image: python:2.7.13
- image: python:3.6.2
steps:
- checkout
- run:
name: Flake8 and unittests on Python 2.7.13
name: Flake8 and unittests on Python 3.6.2
command: |
python -m venv venv
. venv/bin/activate
Expand All @@ -21,11 +21,11 @@ jobs:
build:
working_directory: ~/sc2reader
docker:
- image: python:3.6.2
- image: python:2.7.13
steps:
- checkout
- run:
name: Flake8 and unittests on Python 3.6.2
name: Flake8 and unittests on Python 2.7.13
command: |
python -m venv venv
. venv/bin/activate
Expand Down