From 2c042188f598d0ad8dce3061395b27d183344738 Mon Sep 17 00:00:00 2001 From: Martin Di Paola Date: Sun, 20 Feb 2022 22:52:18 +0000 Subject: [PATCH] Update CI to test Python 3.10 and Ruby 3.1 At the moment these are the only new versions that are not covered by the current CI config so this comit updates them. --- .github/workflows/test.yml | 6 +++--- setup.py | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bfe9c98d..f1b145e9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,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: TERM: xterm-color steps: @@ -50,7 +50,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"] steps: - uses: actions/checkout@v2 - name: Setup python @@ -90,7 +90,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: ["2.4", "2.5", "2.6", "2.7", "3.0"] + ruby-version: ["2.4", "2.5", "2.6", "2.7", "3.0", "3.1"] steps: - uses: actions/checkout@v2 - name: Setup python diff --git a/setup.py b/setup.py index b6cb7283..6cc8010b 100644 --- a/setup.py +++ b/setup.py @@ -96,6 +96,7 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Programming Language :: C', 'Programming Language :: C++', 'Programming Language :: JavaScript',