From 0930d26742aac507fb6b6292904d3d42a2904862 Mon Sep 17 00:00:00 2001 From: Theron Luhn Date: Thu, 17 Oct 2024 21:34:32 -0700 Subject: [PATCH] Add support for 3.11 and 3.12, drop support for 3.6 and 3.7. --- .github/workflows/tests.yml | 15 ++++++++------- setup.cfg | 6 +++--- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3f53cc5..1cb0df1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,12 +8,13 @@ jobs: strategy: matrix: py: - - "3.6" - - "3.7" - "3.8" - "3.9" - "3.10" - - "pypy3" + - "3.11" + - "3.12" + - "pypy3.9" + - "pypy3.10" pyramid_version: - "<2" - ">=2" @@ -21,9 +22,9 @@ jobs: name: "Python: ${{ matrix.py }}, Pyramid: ${{ matrix.pyramid_version }}" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.py }} - name: Install @@ -35,9 +36,9 @@ jobs: runs-on: ubuntu-latest name: Lint steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: 3.8 - name: Install diff --git a/setup.cfg b/setup.cfg index cfb11db..b71134f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,11 +15,11 @@ classifiers = Operating System :: OS Independent Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3 - Programming Language :: Python :: 3.6 - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy Programming Language :: Python @@ -27,7 +27,7 @@ classifiers = [options] packages = find: -python_requires = >=3.6 +python_requires = >=3.8 install_requires = celery>=4,<6 pyramid>=1.9