Skip to content

Commit

Permalink
Fix Django master install
Browse files Browse the repository at this point in the history
  • Loading branch information
andreynovikov committed Apr 16, 2021
1 parent 81b991e commit 389cb22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ matrix:

- { python: "3.8", env: DJANGO_VERSION="2.2.*" }
- { python: "3.8", env: DJANGO_VERSION="3.2.*" }
- { python: "3.8", env: DJANGO_VERSION=master }
- { python: "3.8", env: DJANGO_VERSION=dev }

- { python: "3.9", env: DJANGO_VERSION="3.2.*" }
- { python: "3.9", env: DJANGO_VERSION=master }
- { python: "3.9", env: DJANGO_VERSION=dev }

allow_failures:
- env: DJANGO_VERSION=master
- env: DJANGO_VERSION=dev

install:
- pip install coverage
- pip install codacy-coverage
- if [[ $DJANGO_VERSION == master ]]; then pip install -e git+https://github.com/django/django@master#egg=django
- if [[ $DJANGO_VERSION == dev ]]; then pip install -e git+https://github.com/django/django@main#egg=django
-U; else pip install Django==${DJANGO_VERSION} -U; fi

branches:
Expand Down

0 comments on commit 389cb22

Please sign in to comment.