Skip to content

Commit

Permalink
Add support for 3.11 and 3.12, drop support for 3.6 and 3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
luhn committed Oct 18, 2024
1 parent 8fbf18d commit 0930d26
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@ 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"

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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ 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
Topic :: Software Development :: Object Brokering

[options]
packages = find:
python_requires = >=3.6
python_requires = >=3.8
install_requires =
celery>=4,<6
pyramid>=1.9
Expand Down

0 comments on commit 0930d26

Please sign in to comment.