Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update CI configuration for Python 3.10
Also increase CI timeout for now as some dependencies have no wheels
available, yet, and are thus compiled during CI.
  • Loading branch information
filmor committed Oct 14, 2021
commit 78a22e672e1ee218e47dc993b10d329cf121ba59
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ jobs:
build-test:
name: Build and Test
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 7
timeout-minutes: 15

strategy:
fail-fast: false
matrix:
os: [windows, ubuntu, macos]
python: ["3.6", "3.7", "3.8", "3.9"]
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
platform: [x64]
shutdown_mode: [Normal, Soft]

Expand Down
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ environment:
CODECOV_ENV: PYTHON_VERSION, PLATFORM

matrix:
- PYTHON_VERSION: 3.10
- PYTHON_VERSION: 3.9
- PYTHON_VERSION: 3.8
- PYTHON_VERSION: 3.7
- PYTHON_VERSION: 3.6
- PYTHON_VERSION: 3.10
PYTHONNET_SHUTDOWN_MODE: Soft
- PYTHON_VERSION: 3.9
PYTHONNET_SHUTDOWN_MODE: Soft
- PYTHON_VERSION: 3.8
Expand Down