Skip to content
Merged
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
Comment thread
ezio-melotti marked this conversation as resolved.
Outdated
# Workaround for actions/setup-python#508
dev: ["-dev"]
Comment thread
ezio-melotti marked this conversation as resolved.
Outdated

steps:
- uses: actions/checkout@v2
Expand All @@ -23,9 +25,9 @@ jobs:
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}${{ matrix.dev }}
Comment thread
ezio-melotti marked this conversation as resolved.
Outdated
- run: python3 -m pip install -U -r dev-requirements.txt
- run: pytest --cov=. --cov-report=xml
- uses: codecov/codecov-action@v2
Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ redis==4.5.4
celery==5.2.7
sentry-sdk==1.18.0
click==8.1.3

# workaround for celery/kombu#1600
kombu==5.3.0b2; python_version>="3.12"