From 4680752e8605053a0c9ea3e451fdeb59c0d66a2c Mon Sep 17 00:00:00 2001 From: Tom Hayward Date: Sat, 30 May 2020 11:44:06 -0700 Subject: [PATCH] Enable python 3 in the CI --- .github/workflows/django.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index af94e09..19ba505 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -13,7 +13,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [2.7] # TODO: python3 support, 3.6, 3.7, 3.8] + python-version: [2.7, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2