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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: django-qstash
3
- Version: 0.0.1
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.1"
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,4 +1,6 @@
1
- __version__ = "0.1.0"
1
+ from __future__ import annotations
2
+
3
+ __version__ = "0.0.2"
2
4
 
3
5
  from .tasks import shared_task
4
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: django-qstash
3
- Version: 0.0.1
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