From 6df7335500b6cc03e3a249706ed6545426557671 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Sun, 10 Oct 2021 21:25:41 +0300 Subject: [PATCH] Add support for Python 3.10 --- .github/workflows/test.yml | 2 +- .travis.yml | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 444b8d99..8f891ed1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"] + python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"] architecture: ["x86", "x64"] os: [windows-latest] diff --git a/.travis.yml b/.travis.yml index 5fbbe715..b03bb4af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,11 +16,12 @@ arch: - arm64 python: - - 3.5 - - 3.6 - - 3.7 - - 3.8 - - 3.9-dev + - "3.5" + - "3.6" + - "3.7" + - "3.8" + - "3.9" + - "3.10-dev" script: - pytest