From 24faa9ba3a4cd5779e0465650b1fda4d5a362f23 Mon Sep 17 00:00:00 2001 From: Glandos Date: Mon, 15 Nov 2021 21:33:21 +0100 Subject: [PATCH] add tests for python 3.10 --- .github/workflows/test-docs.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-docs.yml b/.github/workflows/test-docs.yml index 1f56c422..9767aea2 100644 --- a/.github/workflows/test-docs.yml +++ b/.github/workflows/test-docs.yml @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10] dependencies: [normal] database: [sqlite] # Test other databases only with one version of Python (Debian buster has 3.7) @@ -60,6 +60,9 @@ jobs: - python-version: 3.9 dependencies: minimal database: sqlite + - python-version: 3.10 + dependencies: minimal + database: sqlite steps: - uses: actions/checkout@v2