From 34cfa2939dc03e736a51421871521092db7bd40b Mon Sep 17 00:00:00 2001 From: Joakim Soderlund Date: Sun, 25 Sep 2022 13:56:43 +0200 Subject: [PATCH] Add build with Python 3.10 --- .github/workflows/main.yml | 9 +++++---- tox.ini | 2 ++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cbf5ec9..a88b55b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,10 +10,11 @@ jobs: strategy: matrix: python-version: - - 3.6 - - 3.7 - - 3.8 - - 3.9 + - '3.6' + - '3.7' + - '3.8' + - '3.9' + - '3.10' steps: - name: Clone Repository diff --git a/tox.ini b/tox.ini index 78538d8..cb260ab 100644 --- a/tox.ini +++ b/tox.ini @@ -4,6 +4,7 @@ envlist = py37 py38 py39 + py310 [gh-actions] python = @@ -11,6 +12,7 @@ python = 3.7: py37 3.8: py38 3.9: py39 + 3.10: py310 [testenv] deps = -rrequirements.txt