Skip to content
Open
Changes from all commits
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
13 changes: 10 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,16 @@ jobs:
- python ./ci.py --deps
script:
- flake8 .
- stage: linter
name: "Python 3.9"
python: 3.9
install:
- python ./ci.py --deps
script:
- flake8 .
- stage: build
name: "Build Release - Linux"
python: 3.8
python: 3.9
install:
- python ci.py --deps
script:
Expand All @@ -46,8 +53,8 @@ jobs:
os: windows
language: shell
before_install:
- choco install python --version=3.8
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
- choco install python --version=3.9
env: PATH=/c/Python39:/c/Python39/Scripts:$PATH
install:
- python ci.py --deps
script:
Expand Down