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 3baa61a..0bcacdf 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ def get_version(): "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", ],