Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Python versions in the CI workflow. #590

Merged
merged 11 commits into from May 2, 2023
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
ezio-melotti marked this conversation as resolved.
Show resolved Hide resolved

steps:
- uses: actions/checkout@v3
Expand All @@ -26,6 +26,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- run: python3 -m pip install -U -r dev-requirements.txt
- run: pytest --cov=. --cov-report=xml
- uses: codecov/codecov-action@v3
Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Expand Up @@ -7,3 +7,6 @@ redis==4.5.4
celery==5.2.7
sentry-sdk==1.21.1
click==8.1.3

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