-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for django 4.2 and 5.0 v2.7.0 # -----BEGIN PGP SIGNATURE----- # # iQIzBAABCgAdFiEEFJMl/RWQTpxOuJ6V6BRE6c4faV0FAmacZwsACgkQ6BRE6c4f # aV2MjQ/+O3DgPM1cnXz4tbD6V6NlSGr0N/kqsQlgh96akGq+YIn9yfV9NLOD4+ow # 5Mp97Q8NB6Xo9M8FUPLOLv5roYpDtU2RUQB7KPfozfrME4VhIwSTkaEQGr58CnKr # tQjlTDiOy4bS9yrnoBCIL+jz8yIE7tVkH4WLfmZsMQXUjJ/3V8uR7Dl9ilKTbSLF # f2DSD4cV8JAGXJzKalozMqmKeWHQLGtJMejAXrW/TYroZ7M2l+/ISPe/77zTruvs # nQzJcp+e3s89IlcZkiQEzu4wPStdkf8Ss1oP6v5d34Ac8jihR3O5IepAaRt8XhGQ # P+vYJ2Nv+AONQC5DXVRYyGyYZKVf3G8Wt94KotLA13DA3kbVZ5dTDYnWiE9vdsCs # 9hv3AaMvcF7Bx+ETctsASMER/dNtckxePDGdmBU84utFIW6B13SxabMy7d389OtN # mDAH7IBA4T0USFJdU8NE5tJO2Vl32euUs7/1VUf1c5+QIenZ90dtQi2dENOOJKm7 # 4RNkWJoop3vkpjHj3KBPon0pdsDQXU51TQ7+MXC4ne1mg0z+QteehzFTuHM+/pDX # 3vfY2xGRPs+uudiQDvw56Qs/wxDQWtaDiDt6mZU8VzawzwfNSglpJbu5AWOu/G0f # eFkCqNfG0UIaMZg8vzduJ67Eqbj3eZRJztqmhaC1jIXzD1iV6lg= # =EVVI # -----END PGP SIGNATURE----- # gpg: Signature made Sun Jul 21 03:40:27 2024 CEST # gpg: using RSA key 149325FD15904E9C4EB89E95E81444E9CE1F695D # gpg: Good signature from "Rick van Hattem <[email protected]>" [ultimate] # gpg: aka "[jpeg image of size 9662]" [ultimate]
- Loading branch information
Showing
10 changed files
with
63 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Close stale issues and pull requests | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * *' # Run every day at midnight | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
days-before-stale: 30 | ||
exempt-issue-labels: in-progress,help-wanted,pinned,security,enhancement |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Test | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [3.6, 3.7, 3.8, 3.9] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install tox tox-gh-actions | ||
- name: Test with tox | ||
run: tox |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
__package_name__ = 'django-statsd' | ||
__version__ = '2.6.0' | ||
__version__ = '2.7.0' | ||
__author__ = 'Rick van Hattem' | ||
__author_email__ = '[email protected]' | ||
__description__ = ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
from django import urls | ||
|
||
from . import views | ||
|
||
urlpatterns = [ | ||
urls.re_path(r'^$', views.index, name='index'), | ||
urls.path(r'', views.index, name='index'), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from django import urls | ||
|
||
urlpatterns = [ | ||
urls.re_path(r'^test_app/$', urls.include('tests.test_app.urls')), | ||
urls.path('test_app/', urls.include('tests.test_app.urls')), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters