Skip to content

Commit

Permalink
Enable Python 3.6 to 3.9 in travis CI configuration #54
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Druez <[email protected]>
  • Loading branch information
tdruez committed Nov 18, 2020
1 parent 38fbe1a commit 86eca98
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
os: linux
dist: bionic
language: python
python: "3.6"
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"

addons:
postgresql: "10"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# ScanCode.io is a free software code scanning tool from nexB Inc. and others.
# Visit https://github.com/nexB/scancode.io for support and download.

PYTHON_EXE=python3.6
PYTHON_EXE=python3
MANAGE=bin/python manage.py
ACTIVATE=. bin/activate;
ANSIBLE_PLAYBOOK=cd etc/ansible/ && ansible-playbook --inventory-file=hosts --verbose --ask-become-pass --user=${USER}
Expand Down

0 comments on commit 86eca98

Please sign in to comment.