From 47e0fac314c793ce34ea9ef8791e8881a1cb8485 Mon Sep 17 00:00:00 2001 From: Stevie Date: Mon, 23 Jan 2023 13:27:42 +0100 Subject: [PATCH] chore(tests): add Python 3.11 in CI runs/trove classifier --- .github/workflows/ci.yml | 6 +++--- .github/workflows/coverage.yml | 4 ++-- python/setup.py | 1 + 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50e102f6e..6c537dc98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,12 +9,12 @@ jobs: runs-on: ubuntu-18.04 strategy: matrix: - python-version: [2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", pypy2, pypy3] + python-version: [2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", 3.11, pypy2.7, pypy3.9] steps: - - uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@f38219332975fe8f9c04cca981d674bf22aea1d3 # v2 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index b90c3a97b..894dfc3ca 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -8,9 +8,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 - name: Set up latest Python 3 - uses: actions/setup-python@f38219332975fe8f9c04cca981d674bf22aea1d3 # v2 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4 with: python-version: 3 - name: Install dependencies diff --git a/python/setup.py b/python/setup.py index 8885c3e81..dcdd75cce 100755 --- a/python/setup.py +++ b/python/setup.py @@ -88,6 +88,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ],