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 fb96e82
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 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 @@ -39,7 +40,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.12
- name: Install
run: pip install .[linting]
- name: Flake8
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 fb96e82

Please sign in to comment.