From 7e737bef47bf915815bd3b47452ebbec94304889 Mon Sep 17 00:00:00 2001 From: Serhii Buniak <73126645+serhiibuniak-okta@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:10:43 +0200 Subject: [PATCH] Add CI checks for python 3.9 and 3.10, update setup.py GH actions - 3.10, Travis CI - 3.10-dev --- .github/workflows/python-package.yml | 2 +- .travis.yml | 2 ++ setup.py | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index a19d4fa..85a000b 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 diff --git a/.travis.yml b/.travis.yml index ed64d95..1f5ee3b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ python: - "3.6" - "3.7" - "3.8" + - "3.9" + - "3.10-dev" install: - pip install -U -r requirements.txt diff --git a/setup.py b/setup.py index 8c0f71e..0bcacdf 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,8 @@ def get_version(): "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "License :: OSI Approved :: Apache Software License", "Topic :: Software Development :: Libraries :: Python Modules", ],