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

Fix apicheck CI task and add additional testing for PyPy 3.9 #616

Merged
merged 5 commits into from
Dec 19, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.9']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.9']
auvipy marked this conversation as resolved.
Show resolved Hide resolved

services:
rabbitmq:
Expand Down
11 changes: 11 additions & 0 deletions docs/reference/django-celery-beat.signals.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
=====================================================
``django_celery_beat.signals``
=====================================================

.. contents::
:local:
.. currentmodule:: django_celery_beat.signals

.. automodule:: django_celery_beat.signals
:members:
:undoc-members:
1 change: 1 addition & 0 deletions docs/reference/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@
django-celery-beat.utils
django-celery-beat.validators
django-celery-beat.clockedschedule
django-celery-beat.signals
2 changes: 1 addition & 1 deletion requirements/test-django41.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
django>=4.1.2,<4.2
django>=4.1.4,<4.2
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def _pyimp():
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
auvipy marked this conversation as resolved.
Show resolved Hide resolved
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Framework :: Django
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python =
3.8: py38, apicheck, linkcheck
3.9: py39, flake8, pydocstyle, cov
3.10: py310
3.11: py311
pypy-3.9: pypy3

[gh-actions:env]
Expand All @@ -18,7 +19,8 @@ envlist =
py38-django{32,40,41}
py39-django{32,40,41}
py310-django{32,40,41}
pypy3-django{32}
py311-django(41}
pypy3-django{32,40,41}
flake8
apicheck
linkcheck
Expand Down