diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 19:02:15 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 19:02:15 -0500 |
commit | 500b13dfaecbb180082ac2797d2ab677603ef0d1 (patch) | |
tree | bbdac3c35ff8877ca9132d2e714b5d1d9432679f /.github/workflows | |
parent | 3fc09649e9ec8011d339f0f52b347543077ce8bc (diff) | |
download | cmd2-git-500b13dfaecbb180082ac2797d2ab677603ef0d1.tar.gz |
Remove Python 3.10 testing because it doesn't appear to be available in GitHub Actions yet
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d85b789c..8aa0a082 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.6, 3.7, 3.8, 3.9, 3.10] + python-version: [3.6, 3.7, 3.8, 3.9] fail-fast: false runs-on: ${{ matrix.os }} steps: |