diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c79db6e..9bd353a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,13 +15,13 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ["3.7", "3.8", "3.9"] + python-version: ["3.7", "3.8", "3.9", "3.10"] # Test all on ubuntu, test ends on macos include: - os: macos-latest python-version: "3.7" - os: macos-latest - python-version: "3.9" + python-version: "3.10" steps: - uses: actions/checkout@v2 diff --git a/appveyor.yml b/appveyor.yml index 0a7b388..10659d8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,10 +4,15 @@ matrix: environment: global: + APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022' COLUMNS: 120 # Appveyor web viwer window width is 130 chars matrix: + - PYTHON: "C:\\Python310-x64" + PYTHON_VERSION: "3.10.x" + PYTHON_ARCH: "64" + - PYTHON: "C:\\Python37-x64" PYTHON_VERSION: "3.7.x" PYTHON_ARCH: "64"