diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e1ab327..7226cd76 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] env: CI: 1 steps: diff --git a/setup.py b/setup.py index 9a0dc20d..f4f1c30e 100644 --- a/setup.py +++ b/setup.py @@ -81,5 +81,8 @@ "Operating System :: MacOS :: MacOS X", "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", ], )