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

Python versions #315

Merged
merged 5 commits into from Jan 18, 2022
Merged
Show file tree
Hide file tree
Changes from all 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
20 changes: 16 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -33,11 +33,23 @@ jobs:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
django-version:
- 2.2.*
- 3.1.*
- 3.2.*
- 4.*
- "2.2"
- "3.1"
- "3.2"
- "4.0"
exclude:
- python-version: "3.6"
django-version: "4.0"
- python-version: "3.7"
django-version: "4.0"
- python-version: "3.10"
django-version: "2.2"
- python-version: "3.10"
django-version: "3.1"

steps:
- uses: actions/checkout@v2
- name: Setup Python version ${{ matrix.python-version }}
Expand Down
6 changes: 5 additions & 1 deletion README.rst
Expand Up @@ -2,7 +2,7 @@
django-health-check
===================

|version| |coverage| |health| |license|
|version| |pyversion| |djversion| |coverage| |health| |license|

This project checks for various conditions and provides reports when anomalous
behavior is detected.
Expand Down Expand Up @@ -299,6 +299,10 @@ Other resources

.. |version| image:: https://img.shields.io/pypi/v/django-health-check.svg
:target: https://pypi.python.org/pypi/django-health-check/
.. |pyversion| image:: https://img.shields.io/pypi/pyversions/django-health-check.svg
:target: https://pypi.python.org/pypi/django-health-check/
.. |djversion| image:: https://img.shields.io/pypi/djversions/django-health-check.svg
:target: https://pypi.python.org/pypi/django-health-check/
.. |coverage| image:: https://codecov.io/gh/KristianOellegaard/django-health-check/branch/master/graph/badge.svg
:target: https://codecov.io/gh/KristianOellegaard/django-health-check
.. |health| image:: https://landscape.io/github/KristianOellegaard/django-health-check/master/landscape.svg?style=flat
Expand Down
7 changes: 7 additions & 0 deletions setup.cfg
Expand Up @@ -22,7 +22,14 @@ classifier =
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
Topic :: Software Development :: Quality Assurance
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Topic :: System :: Logging
Topic :: System :: Monitoring
Topic :: Utilities
Expand Down
4 changes: 2 additions & 2 deletions tests/testapp/urls.py
@@ -1,5 +1,5 @@
from django.conf.urls import include, url
from django.urls import include, re_path

urlpatterns = [
url(r'^ht/', include('health_check.urls')),
re_path(r'^ht/', include('health_check.urls')),
]