django-qstash 0.0.1__tar.gz → 0.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of django-qstash might be problematic. Click here for more details.
- {django_qstash-0.0.1 → django_qstash-0.0.2}/PKG-INFO +1 -1
- {django_qstash-0.0.1 → django_qstash-0.0.2}/pyproject.toml +64 -1
- {django_qstash-0.0.1 → django_qstash-0.0.2}/src/django_qstash/__init__.py +3 -1
- {django_qstash-0.0.1 → django_qstash-0.0.2}/src/django_qstash.egg-info/PKG-INFO +1 -1
- {django_qstash-0.0.1 → django_qstash-0.0.2}/README.md +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/setup.cfg +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/src/django_qstash/tasks.py +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/src/django_qstash/utils.py +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/src/django_qstash/views.py +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/src/django_qstash.egg-info/SOURCES.txt +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/src/django_qstash.egg-info/dependency_links.txt +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/src/django_qstash.egg-info/requires.txt +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/src/django_qstash.egg-info/top_level.txt +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/tests/test_tasks.py +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/tests/test_utils.py +0 -0
- {django_qstash-0.0.1 → django_qstash-0.0.2}/tests/test_views.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: django-qstash
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: A drop-in replacement for Celery's shared_task with Upstash QStash.
|
|
5
5
|
Author-email: Justin Mitchel <justin@codingforentrepreneurs.com>
|
|
6
6
|
Project-URL: Changelog, https://github.com/jmitchel3/django-qstash
|
|
@@ -6,7 +6,7 @@ requires = [
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "django-qstash"
|
|
9
|
-
version = "0.0.
|
|
9
|
+
version = "0.0.2"
|
|
10
10
|
description = "A drop-in replacement for Celery's shared_task with Upstash QStash."
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
license = { file = "LICENSE" }
|
|
@@ -40,3 +40,66 @@ urls.Changelog = "https://github.com/jmitchel3/django-qstash"
|
|
|
40
40
|
urls.Documentation = "https://github.com/jmitchel3/django-qstash"
|
|
41
41
|
urls.Funding = "https://github.com/jmitchel3/django-qstash"
|
|
42
42
|
urls.Repository = "https://github.com/jmitchel3/django-qstash"
|
|
43
|
+
|
|
44
|
+
[tool.isort]
|
|
45
|
+
add_imports = [
|
|
46
|
+
"from __future__ import annotations",
|
|
47
|
+
]
|
|
48
|
+
force_single_line = true
|
|
49
|
+
profile = "black"
|
|
50
|
+
src_paths = [
|
|
51
|
+
".",
|
|
52
|
+
"example",
|
|
53
|
+
"src",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[tool.pyproject-fmt]
|
|
57
|
+
max_supported_python = "3.13"
|
|
58
|
+
|
|
59
|
+
[tool.pytest.ini_options]
|
|
60
|
+
addopts = """\
|
|
61
|
+
--strict-config
|
|
62
|
+
--strict-markers
|
|
63
|
+
--ds=tests.settings
|
|
64
|
+
"""
|
|
65
|
+
django_find_project = false
|
|
66
|
+
xfail_strict = true
|
|
67
|
+
|
|
68
|
+
[tool.coverage.run]
|
|
69
|
+
branch = true
|
|
70
|
+
parallel = true
|
|
71
|
+
source = [
|
|
72
|
+
"django_qstash",
|
|
73
|
+
"tests",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[tool.coverage.paths]
|
|
77
|
+
source = [
|
|
78
|
+
"src",
|
|
79
|
+
".tox/**/site-packages",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[tool.coverage.report]
|
|
83
|
+
show_missing = true
|
|
84
|
+
|
|
85
|
+
[tool.mypy]
|
|
86
|
+
enable_error_code = [
|
|
87
|
+
"ignore-without-code",
|
|
88
|
+
"redundant-expr",
|
|
89
|
+
"truthy-bool",
|
|
90
|
+
]
|
|
91
|
+
mypy_path = "src/"
|
|
92
|
+
namespace_packages = false
|
|
93
|
+
strict = true
|
|
94
|
+
warn_unreachable = true
|
|
95
|
+
|
|
96
|
+
[[tool.mypy.overrides]]
|
|
97
|
+
module = "tests.*"
|
|
98
|
+
disallow_untyped_defs = false
|
|
99
|
+
|
|
100
|
+
[tool.rstcheck]
|
|
101
|
+
ignore_directives = [
|
|
102
|
+
"autoclass",
|
|
103
|
+
"autofunction",
|
|
104
|
+
]
|
|
105
|
+
report_level = "ERROR"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: django-qstash
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: A drop-in replacement for Celery's shared_task with Upstash QStash.
|
|
5
5
|
Author-email: Justin Mitchel <justin@codingforentrepreneurs.com>
|
|
6
6
|
Project-URL: Changelog, https://github.com/jmitchel3/django-qstash
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|