forked from frankwiles/django-app-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Python 3.13 and add conditional test skipping (#5)
* Update to Python 3.13 and add conditional test skipping Upgraded project SDK from Python 3.12 to 3.13. Introduced conditional skipping for Mixpanel tests if `APP_METRICS_MIXPANEL_TOKEN` is not set. * Add support for Python 3.13 Updated pyproject.toml to include Python 3.13 in the classifiers. Modified GitHub Actions workflow to use Python 3.13 for testing and dependencies installation. This ensures compatibility with the latest Python version. * Trigger Build * Add black to dev dependencies and adjust coverage threshold Added the code formatter 'black' to the development dependencies in pyproject.toml. Reduced the coverage threshold from 75% to 72%. Minor formatting adjustments in various Python files.
- Loading branch information
Showing
10 changed files
with
31 additions
and
38 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,7 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
"""managers.py: Django app_metrics""" | ||
|
||
|
||
import logging | ||
|
||
from django.apps import apps | ||
|
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
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