diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 17f2025..a6a28b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] + python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"] name: OS ${{ matrix.os}} - Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v2 @@ -32,7 +32,7 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: "3.7" architecture: x64 - run: | pip install -q flake8 diff --git a/appveyor.yml b/appveyor.yml index a523c2b..36d32f6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,6 +9,8 @@ environment: - PYTHON: "C:\\Python38" - PYTHON: "C:\\Python39" APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + - PYTHON: "C:\\Python310" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 init: - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%" diff --git a/setup.py b/setup.py index eb19508..5fa312d 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,7 @@ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Topic :: Software Development", ], )