From 4881c49ef8888997b8d4cb1ad981bbf6d52afabb Mon Sep 17 00:00:00 2001 From: Sergey Fursov Date: Tue, 12 Oct 2021 22:26:01 +0300 Subject: [PATCH] add django 3.2 and python 3.10 to GH actions --- .github/workflows/tests-and-codestyle.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests-and-codestyle.yaml b/.github/workflows/tests-and-codestyle.yaml index a30375e..3926b30 100644 --- a/.github/workflows/tests-and-codestyle.yaml +++ b/.github/workflows/tests-and-codestyle.yaml @@ -11,13 +11,13 @@ jobs: strategy: fail-fast: false matrix: - python: [3.5, 3.6, 3.7, 3.8, 3.9] - django: [2.2.*, 3.0.*, 3.1.*] + python: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10] + django: [2.2.*, 3.1.*, 3.2.*] exclude: - - python: 3.5 - django: 3.0.* - python: 3.5 django: 3.1.* + - python: 3.5 + django: 3.2.* steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2