celery-asyncio 6.0.0a1__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.
Files changed (816) hide show
  1. celery_asyncio-6.0.0a1/.claude/settings.local.json +37 -0
  2. celery_asyncio-6.0.0a1/.dockerignore +33 -0
  3. celery_asyncio-6.0.0a1/.editorconfig +15 -0
  4. celery_asyncio-6.0.0a1/.github/FUNDING.yml +8 -0
  5. celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Bug-Report.md +166 -0
  6. celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Documentation-Bug-Report.md +56 -0
  7. celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Enhancement.md +94 -0
  8. celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Feature-Request.md +93 -0
  9. celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Major-Version-Release-Checklist.md +48 -0
  10. celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Minor-Version-Release-Checklist.md +136 -0
  11. celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Patch-Version-Release-Checklist.md +136 -0
  12. celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/config.yml +13 -0
  13. celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE.md +4 -0
  14. celery_asyncio-6.0.0a1/.github/PULL_REQUEST_TEMPLATE.md +14 -0
  15. celery_asyncio-6.0.0a1/.github/copilot-instructions.md +567 -0
  16. celery_asyncio-6.0.0a1/.github/dependabot.yml +10 -0
  17. celery_asyncio-6.0.0a1/.github/opencollective.yml +18 -0
  18. celery_asyncio-6.0.0a1/.github/workflows/ci.yml +32 -0
  19. celery_asyncio-6.0.0a1/.github/workflows/codeql-analysis.yml +71 -0
  20. celery_asyncio-6.0.0a1/.github/workflows/docker.yml +76 -0
  21. celery_asyncio-6.0.0a1/.github/workflows/integration-tests.yml +72 -0
  22. celery_asyncio-6.0.0a1/.github/workflows/linter.yml +14 -0
  23. celery_asyncio-6.0.0a1/.github/workflows/publish.yml +61 -0
  24. celery_asyncio-6.0.0a1/.github/workflows/python-package.yml +136 -0
  25. celery_asyncio-6.0.0a1/.github/workflows/semgrep.yml +25 -0
  26. celery_asyncio-6.0.0a1/.github/workflows/smoke-tests.yml +57 -0
  27. celery_asyncio-6.0.0a1/.github/workflows/tag.yml +56 -0
  28. celery_asyncio-6.0.0a1/.gitignore +108 -0
  29. celery_asyncio-6.0.0a1/.pre-commit-config.yaml +51 -0
  30. celery_asyncio-6.0.0a1/.readthedocs.yaml +26 -0
  31. celery_asyncio-6.0.0a1/CONTRIBUTING.rst +1512 -0
  32. celery_asyncio-6.0.0a1/CONTRIBUTORS.txt +308 -0
  33. celery_asyncio-6.0.0a1/Changelog.rst +2818 -0
  34. celery_asyncio-6.0.0a1/LICENSE +55 -0
  35. celery_asyncio-6.0.0a1/MANIFEST.in +26 -0
  36. celery_asyncio-6.0.0a1/Makefile +204 -0
  37. celery_asyncio-6.0.0a1/PKG-INFO +705 -0
  38. celery_asyncio-6.0.0a1/README.rst +608 -0
  39. celery_asyncio-6.0.0a1/SECURITY.md +15 -0
  40. celery_asyncio-6.0.0a1/TODO +2 -0
  41. celery_asyncio-6.0.0a1/bandit.json +2475 -0
  42. celery_asyncio-6.0.0a1/celery/__init__.py +172 -0
  43. celery_asyncio-6.0.0a1/celery/__main__.py +19 -0
  44. celery_asyncio-6.0.0a1/celery/_state.py +197 -0
  45. celery_asyncio-6.0.0a1/celery/app/__init__.py +76 -0
  46. celery_asyncio-6.0.0a1/celery/app/amqp.py +657 -0
  47. celery_asyncio-6.0.0a1/celery/app/annotations.py +52 -0
  48. celery_asyncio-6.0.0a1/celery/app/autoretry.py +66 -0
  49. celery_asyncio-6.0.0a1/celery/app/backends.py +69 -0
  50. celery_asyncio-6.0.0a1/celery/app/base.py +1525 -0
  51. celery_asyncio-6.0.0a1/celery/app/builtins.py +186 -0
  52. celery_asyncio-6.0.0a1/celery/app/control.py +788 -0
  53. celery_asyncio-6.0.0a1/celery/app/defaults.py +435 -0
  54. celery_asyncio-6.0.0a1/celery/app/events.py +40 -0
  55. celery_asyncio-6.0.0a1/celery/app/log.py +248 -0
  56. celery_asyncio-6.0.0a1/celery/app/registry.py +68 -0
  57. celery_asyncio-6.0.0a1/celery/app/routes.py +136 -0
  58. celery_asyncio-6.0.0a1/celery/app/task.py +1178 -0
  59. celery_asyncio-6.0.0a1/celery/app/trace.py +782 -0
  60. celery_asyncio-6.0.0a1/celery/app/utils.py +415 -0
  61. celery_asyncio-6.0.0a1/celery/apps/__init__.py +0 -0
  62. celery_asyncio-6.0.0a1/celery/apps/beat.py +160 -0
  63. celery_asyncio-6.0.0a1/celery/apps/multi.py +506 -0
  64. celery_asyncio-6.0.0a1/celery/apps/worker.py +509 -0
  65. celery_asyncio-6.0.0a1/celery/backends/__init__.py +1 -0
  66. celery_asyncio-6.0.0a1/celery/backends/arangodb.py +190 -0
  67. celery_asyncio-6.0.0a1/celery/backends/asynchronous.py +378 -0
  68. celery_asyncio-6.0.0a1/celery/backends/azureblockblob.py +188 -0
  69. celery_asyncio-6.0.0a1/celery/backends/base.py +1211 -0
  70. celery_asyncio-6.0.0a1/celery/backends/cache.py +163 -0
  71. celery_asyncio-6.0.0a1/celery/backends/cassandra.py +256 -0
  72. celery_asyncio-6.0.0a1/celery/backends/consul.py +116 -0
  73. celery_asyncio-6.0.0a1/celery/backends/cosmosdbsql.py +218 -0
  74. celery_asyncio-6.0.0a1/celery/backends/couchbase.py +114 -0
  75. celery_asyncio-6.0.0a1/celery/backends/couchdb.py +100 -0
  76. celery_asyncio-6.0.0a1/celery/backends/database/__init__.py +234 -0
  77. celery_asyncio-6.0.0a1/celery/backends/database/models.py +110 -0
  78. celery_asyncio-6.0.0a1/celery/backends/database/session.py +89 -0
  79. celery_asyncio-6.0.0a1/celery/backends/dynamodb.py +556 -0
  80. celery_asyncio-6.0.0a1/celery/backends/elasticsearch.py +283 -0
  81. celery_asyncio-6.0.0a1/celery/backends/filesystem.py +112 -0
  82. celery_asyncio-6.0.0a1/celery/backends/gcs.py +354 -0
  83. celery_asyncio-6.0.0a1/celery/backends/mongodb.py +334 -0
  84. celery_asyncio-6.0.0a1/celery/backends/redis.py +715 -0
  85. celery_asyncio-6.0.0a1/celery/backends/rpc.py +342 -0
  86. celery_asyncio-6.0.0a1/celery/backends/s3.py +87 -0
  87. celery_asyncio-6.0.0a1/celery/beat.py +738 -0
  88. celery_asyncio-6.0.0a1/celery/bin/__init__.py +0 -0
  89. celery_asyncio-6.0.0a1/celery/bin/amqp.py +312 -0
  90. celery_asyncio-6.0.0a1/celery/bin/base.py +306 -0
  91. celery_asyncio-6.0.0a1/celery/bin/beat.py +72 -0
  92. celery_asyncio-6.0.0a1/celery/bin/call.py +71 -0
  93. celery_asyncio-6.0.0a1/celery/bin/celery.py +227 -0
  94. celery_asyncio-6.0.0a1/celery/bin/control.py +252 -0
  95. celery_asyncio-6.0.0a1/celery/bin/events.py +94 -0
  96. celery_asyncio-6.0.0a1/celery/bin/graph.py +197 -0
  97. celery_asyncio-6.0.0a1/celery/bin/list.py +38 -0
  98. celery_asyncio-6.0.0a1/celery/bin/logtool.py +157 -0
  99. celery_asyncio-6.0.0a1/celery/bin/migrate.py +63 -0
  100. celery_asyncio-6.0.0a1/celery/bin/multi.py +480 -0
  101. celery_asyncio-6.0.0a1/celery/bin/purge.py +70 -0
  102. celery_asyncio-6.0.0a1/celery/bin/result.py +30 -0
  103. celery_asyncio-6.0.0a1/celery/bin/shell.py +173 -0
  104. celery_asyncio-6.0.0a1/celery/bin/upgrade.py +91 -0
  105. celery_asyncio-6.0.0a1/celery/bin/worker.py +371 -0
  106. celery_asyncio-6.0.0a1/celery/bootsteps.py +415 -0
  107. celery_asyncio-6.0.0a1/celery/canvas.py +2420 -0
  108. celery_asyncio-6.0.0a1/celery/concurrency/__init__.py +48 -0
  109. celery_asyncio-6.0.0a1/celery/concurrency/asynpool.py +1369 -0
  110. celery_asyncio-6.0.0a1/celery/concurrency/base.py +180 -0
  111. celery_asyncio-6.0.0a1/celery/concurrency/eventlet.py +181 -0
  112. celery_asyncio-6.0.0a1/celery/concurrency/gevent.py +171 -0
  113. celery_asyncio-6.0.0a1/celery/concurrency/prefork.py +172 -0
  114. celery_asyncio-6.0.0a1/celery/concurrency/solo.py +31 -0
  115. celery_asyncio-6.0.0a1/celery/concurrency/thread.py +64 -0
  116. celery_asyncio-6.0.0a1/celery/contrib/__init__.py +0 -0
  117. celery_asyncio-6.0.0a1/celery/contrib/abortable.py +165 -0
  118. celery_asyncio-6.0.0a1/celery/contrib/django/__init__.py +0 -0
  119. celery_asyncio-6.0.0a1/celery/contrib/django/task.py +21 -0
  120. celery_asyncio-6.0.0a1/celery/contrib/migrate.py +416 -0
  121. celery_asyncio-6.0.0a1/celery/contrib/pytest.py +216 -0
  122. celery_asyncio-6.0.0a1/celery/contrib/rdb.py +187 -0
  123. celery_asyncio-6.0.0a1/celery/contrib/sphinx.py +105 -0
  124. celery_asyncio-6.0.0a1/celery/contrib/testing/__init__.py +0 -0
  125. celery_asyncio-6.0.0a1/celery/contrib/testing/app.py +112 -0
  126. celery_asyncio-6.0.0a1/celery/contrib/testing/manager.py +239 -0
  127. celery_asyncio-6.0.0a1/celery/contrib/testing/mocks.py +137 -0
  128. celery_asyncio-6.0.0a1/celery/contrib/testing/tasks.py +9 -0
  129. celery_asyncio-6.0.0a1/celery/contrib/testing/worker.py +223 -0
  130. celery_asyncio-6.0.0a1/celery/events/__init__.py +15 -0
  131. celery_asyncio-6.0.0a1/celery/events/cursesmon.py +534 -0
  132. celery_asyncio-6.0.0a1/celery/events/dispatcher.py +229 -0
  133. celery_asyncio-6.0.0a1/celery/events/dumper.py +103 -0
  134. celery_asyncio-6.0.0a1/celery/events/event.py +63 -0
  135. celery_asyncio-6.0.0a1/celery/events/receiver.py +149 -0
  136. celery_asyncio-6.0.0a1/celery/events/snapshot.py +111 -0
  137. celery_asyncio-6.0.0a1/celery/events/state.py +730 -0
  138. celery_asyncio-6.0.0a1/celery/exceptions.py +312 -0
  139. celery_asyncio-6.0.0a1/celery/fixups/__init__.py +1 -0
  140. celery_asyncio-6.0.0a1/celery/fixups/django.py +220 -0
  141. celery_asyncio-6.0.0a1/celery/loaders/__init__.py +18 -0
  142. celery_asyncio-6.0.0a1/celery/loaders/app.py +8 -0
  143. celery_asyncio-6.0.0a1/celery/loaders/base.py +278 -0
  144. celery_asyncio-6.0.0a1/celery/loaders/default.py +42 -0
  145. celery_asyncio-6.0.0a1/celery/local.py +542 -0
  146. celery_asyncio-6.0.0a1/celery/platforms.py +843 -0
  147. celery_asyncio-6.0.0a1/celery/result.py +1092 -0
  148. celery_asyncio-6.0.0a1/celery/schedules.py +887 -0
  149. celery_asyncio-6.0.0a1/celery/security/__init__.py +74 -0
  150. celery_asyncio-6.0.0a1/celery/security/certificate.py +113 -0
  151. celery_asyncio-6.0.0a1/celery/security/key.py +35 -0
  152. celery_asyncio-6.0.0a1/celery/security/serialization.py +90 -0
  153. celery_asyncio-6.0.0a1/celery/security/utils.py +28 -0
  154. celery_asyncio-6.0.0a1/celery/signals.py +154 -0
  155. celery_asyncio-6.0.0a1/celery/states.py +151 -0
  156. celery_asyncio-6.0.0a1/celery/utils/__init__.py +36 -0
  157. celery_asyncio-6.0.0a1/celery/utils/abstract.py +146 -0
  158. celery_asyncio-6.0.0a1/celery/utils/annotations.py +49 -0
  159. celery_asyncio-6.0.0a1/celery/utils/collections.py +863 -0
  160. celery_asyncio-6.0.0a1/celery/utils/debug.py +193 -0
  161. celery_asyncio-6.0.0a1/celery/utils/deprecated.py +113 -0
  162. celery_asyncio-6.0.0a1/celery/utils/dispatch/LICENSE.python +255 -0
  163. celery_asyncio-6.0.0a1/celery/utils/dispatch/__init__.py +4 -0
  164. celery_asyncio-6.0.0a1/celery/utils/dispatch/license.txt +35 -0
  165. celery_asyncio-6.0.0a1/celery/utils/dispatch/signal.py +358 -0
  166. celery_asyncio-6.0.0a1/celery/utils/functional.py +402 -0
  167. celery_asyncio-6.0.0a1/celery/utils/graph.py +309 -0
  168. celery_asyncio-6.0.0a1/celery/utils/imports.py +164 -0
  169. celery_asyncio-6.0.0a1/celery/utils/iso8601.py +76 -0
  170. celery_asyncio-6.0.0a1/celery/utils/log.py +295 -0
  171. celery_asyncio-6.0.0a1/celery/utils/nodenames.py +114 -0
  172. celery_asyncio-6.0.0a1/celery/utils/objects.py +142 -0
  173. celery_asyncio-6.0.0a1/celery/utils/quorum_queues.py +20 -0
  174. celery_asyncio-6.0.0a1/celery/utils/saferepr.py +269 -0
  175. celery_asyncio-6.0.0a1/celery/utils/serialization.py +273 -0
  176. celery_asyncio-6.0.0a1/celery/utils/static/__init__.py +14 -0
  177. celery_asyncio-6.0.0a1/celery/utils/static/celery_128.png +0 -0
  178. celery_asyncio-6.0.0a1/celery/utils/sysinfo.py +50 -0
  179. celery_asyncio-6.0.0a1/celery/utils/term.py +184 -0
  180. celery_asyncio-6.0.0a1/celery/utils/text.py +198 -0
  181. celery_asyncio-6.0.0a1/celery/utils/threads.py +331 -0
  182. celery_asyncio-6.0.0a1/celery/utils/time.py +462 -0
  183. celery_asyncio-6.0.0a1/celery/utils/timer2.py +160 -0
  184. celery_asyncio-6.0.0a1/celery/worker/__init__.py +4 -0
  185. celery_asyncio-6.0.0a1/celery/worker/autoscale.py +154 -0
  186. celery_asyncio-6.0.0a1/celery/worker/components.py +240 -0
  187. celery_asyncio-6.0.0a1/celery/worker/consumer/__init__.py +15 -0
  188. celery_asyncio-6.0.0a1/celery/worker/consumer/agent.py +21 -0
  189. celery_asyncio-6.0.0a1/celery/worker/consumer/connection.py +36 -0
  190. celery_asyncio-6.0.0a1/celery/worker/consumer/consumer.py +782 -0
  191. celery_asyncio-6.0.0a1/celery/worker/consumer/control.py +33 -0
  192. celery_asyncio-6.0.0a1/celery/worker/consumer/delayed_delivery.py +273 -0
  193. celery_asyncio-6.0.0a1/celery/worker/consumer/events.py +68 -0
  194. celery_asyncio-6.0.0a1/celery/worker/consumer/gossip.py +206 -0
  195. celery_asyncio-6.0.0a1/celery/worker/consumer/heart.py +36 -0
  196. celery_asyncio-6.0.0a1/celery/worker/consumer/mingle.py +76 -0
  197. celery_asyncio-6.0.0a1/celery/worker/consumer/tasks.py +119 -0
  198. celery_asyncio-6.0.0a1/celery/worker/control.py +625 -0
  199. celery_asyncio-6.0.0a1/celery/worker/heartbeat.py +61 -0
  200. celery_asyncio-6.0.0a1/celery/worker/loops.py +143 -0
  201. celery_asyncio-6.0.0a1/celery/worker/pidbox.py +122 -0
  202. celery_asyncio-6.0.0a1/celery/worker/request.py +790 -0
  203. celery_asyncio-6.0.0a1/celery/worker/state.py +288 -0
  204. celery_asyncio-6.0.0a1/celery/worker/strategy.py +209 -0
  205. celery_asyncio-6.0.0a1/celery/worker/worker.py +435 -0
  206. celery_asyncio-6.0.0a1/docker/Dockerfile +177 -0
  207. celery_asyncio-6.0.0a1/docker/docker-compose.yml +48 -0
  208. celery_asyncio-6.0.0a1/docker/docs/Dockerfile +33 -0
  209. celery_asyncio-6.0.0a1/docker/docs/start +7 -0
  210. celery_asyncio-6.0.0a1/docker/entrypoint +7 -0
  211. celery_asyncio-6.0.0a1/docker/scripts/create-linux-user.sh +3 -0
  212. celery_asyncio-6.0.0a1/docker/scripts/install-couchbase.sh +8 -0
  213. celery_asyncio-6.0.0a1/docker/scripts/install-pyenv.sh +15 -0
  214. celery_asyncio-6.0.0a1/docs/AUTHORS.txt +152 -0
  215. celery_asyncio-6.0.0a1/docs/Makefile +252 -0
  216. celery_asyncio-6.0.0a1/docs/THANKS +8 -0
  217. celery_asyncio-6.0.0a1/docs/_ext/celerydocs.py +180 -0
  218. celery_asyncio-6.0.0a1/docs/_static/.keep +0 -0
  219. celery_asyncio-6.0.0a1/docs/_templates/sidebardonations.html +9 -0
  220. celery_asyncio-6.0.0a1/docs/asyncio-worker-rewrite-plan.md +672 -0
  221. celery_asyncio-6.0.0a1/docs/changelog.rst +1 -0
  222. celery_asyncio-6.0.0a1/docs/changelog_formatter.py +130 -0
  223. celery_asyncio-6.0.0a1/docs/community.rst +55 -0
  224. celery_asyncio-6.0.0a1/docs/conf.py +104 -0
  225. celery_asyncio-6.0.0a1/docs/configuration.html +6 -0
  226. celery_asyncio-6.0.0a1/docs/contributing.rst +1 -0
  227. celery_asyncio-6.0.0a1/docs/copyright.rst +28 -0
  228. celery_asyncio-6.0.0a1/docs/django/first-steps-with-django.rst +325 -0
  229. celery_asyncio-6.0.0a1/docs/django/index.rst +13 -0
  230. celery_asyncio-6.0.0a1/docs/faq.rst +964 -0
  231. celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/gcpubsub.rst +144 -0
  232. celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/index.rst +118 -0
  233. celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/kafka.rst +84 -0
  234. celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/rabbitmq.rst +257 -0
  235. celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/redis.rst +294 -0
  236. celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/sqs.rst +365 -0
  237. celery_asyncio-6.0.0a1/docs/getting-started/first-steps-with-celery.rst +487 -0
  238. celery_asyncio-6.0.0a1/docs/getting-started/index.rst +15 -0
  239. celery_asyncio-6.0.0a1/docs/getting-started/introduction.rst +314 -0
  240. celery_asyncio-6.0.0a1/docs/getting-started/next-steps.rst +777 -0
  241. celery_asyncio-6.0.0a1/docs/getting-started/resources.rst +11 -0
  242. celery_asyncio-6.0.0a1/docs/glossary.rst +115 -0
  243. celery_asyncio-6.0.0a1/docs/history/changelog-1.0.rst +1884 -0
  244. celery_asyncio-6.0.0a1/docs/history/changelog-2.0.rst +1079 -0
  245. celery_asyncio-6.0.0a1/docs/history/changelog-2.1.rst +767 -0
  246. celery_asyncio-6.0.0a1/docs/history/changelog-2.2.rst +1028 -0
  247. celery_asyncio-6.0.0a1/docs/history/changelog-2.3.rst +370 -0
  248. celery_asyncio-6.0.0a1/docs/history/changelog-2.4.rst +415 -0
  249. celery_asyncio-6.0.0a1/docs/history/changelog-2.5.rst +218 -0
  250. celery_asyncio-6.0.0a1/docs/history/changelog-3.0.rst +1605 -0
  251. celery_asyncio-6.0.0a1/docs/history/changelog-3.1.rst +1736 -0
  252. celery_asyncio-6.0.0a1/docs/history/changelog-4.0.rst +231 -0
  253. celery_asyncio-6.0.0a1/docs/history/changelog-4.1.rst +344 -0
  254. celery_asyncio-6.0.0a1/docs/history/changelog-4.2.rst +452 -0
  255. celery_asyncio-6.0.0a1/docs/history/changelog-4.3.rst +559 -0
  256. celery_asyncio-6.0.0a1/docs/history/changelog-4.4.rst +776 -0
  257. celery_asyncio-6.0.0a1/docs/history/changelog-5.0.rst +173 -0
  258. celery_asyncio-6.0.0a1/docs/history/changelog-5.1.rst +139 -0
  259. celery_asyncio-6.0.0a1/docs/history/changelog-5.3.rst +504 -0
  260. celery_asyncio-6.0.0a1/docs/history/changelog-5.4.rst +194 -0
  261. celery_asyncio-6.0.0a1/docs/history/changelog-5.5.rst +1722 -0
  262. celery_asyncio-6.0.0a1/docs/history/changelog-5.6.rst +135 -0
  263. celery_asyncio-6.0.0a1/docs/history/index.rst +47 -0
  264. celery_asyncio-6.0.0a1/docs/history/whatsnew-2.5.rst +517 -0
  265. celery_asyncio-6.0.0a1/docs/history/whatsnew-3.0.rst +1032 -0
  266. celery_asyncio-6.0.0a1/docs/history/whatsnew-3.1.rst +1278 -0
  267. celery_asyncio-6.0.0a1/docs/history/whatsnew-4.0.rst +2351 -0
  268. celery_asyncio-6.0.0a1/docs/history/whatsnew-4.1.rst +258 -0
  269. celery_asyncio-6.0.0a1/docs/history/whatsnew-4.2.rst +998 -0
  270. celery_asyncio-6.0.0a1/docs/history/whatsnew-4.3.rst +556 -0
  271. celery_asyncio-6.0.0a1/docs/history/whatsnew-4.4.rst +250 -0
  272. celery_asyncio-6.0.0a1/docs/history/whatsnew-5.0.rst +326 -0
  273. celery_asyncio-6.0.0a1/docs/history/whatsnew-5.1.rst +439 -0
  274. celery_asyncio-6.0.0a1/docs/history/whatsnew-5.3.rst +351 -0
  275. celery_asyncio-6.0.0a1/docs/history/whatsnew-5.4.rst +233 -0
  276. celery_asyncio-6.0.0a1/docs/history/whatsnew-5.5.rst +360 -0
  277. celery_asyncio-6.0.0a1/docs/history/whatsnew-5.6.rst +196 -0
  278. celery_asyncio-6.0.0a1/docs/images/blacksmith-logo-white-on-black.svg +15 -0
  279. celery_asyncio-6.0.0a1/docs/images/celery-banner-small.png +0 -0
  280. celery_asyncio-6.0.0a1/docs/images/celery-banner.png +0 -0
  281. celery_asyncio-6.0.0a1/docs/images/celery_128.png +0 -0
  282. celery_asyncio-6.0.0a1/docs/images/celery_512.png +0 -0
  283. celery_asyncio-6.0.0a1/docs/images/celeryevshotsm.jpg +0 -0
  284. celery_asyncio-6.0.0a1/docs/images/cloudamqp-logo-lightbg.svg +12 -0
  285. celery_asyncio-6.0.0a1/docs/images/dashboard.png +0 -0
  286. celery_asyncio-6.0.0a1/docs/images/dragonfly.svg +89 -0
  287. celery_asyncio-6.0.0a1/docs/images/favicon.ico +0 -0
  288. celery_asyncio-6.0.0a1/docs/images/monitor.png +0 -0
  289. celery_asyncio-6.0.0a1/docs/images/result_graph.png +0 -0
  290. celery_asyncio-6.0.0a1/docs/images/worker_graph_full.png +0 -0
  291. celery_asyncio-6.0.0a1/docs/includes/installation.txt +174 -0
  292. celery_asyncio-6.0.0a1/docs/includes/introduction.txt +201 -0
  293. celery_asyncio-6.0.0a1/docs/includes/resources.txt +57 -0
  294. celery_asyncio-6.0.0a1/docs/index.rst +70 -0
  295. celery_asyncio-6.0.0a1/docs/internals/app-overview.rst +214 -0
  296. celery_asyncio-6.0.0a1/docs/internals/deprecation.rst +238 -0
  297. celery_asyncio-6.0.0a1/docs/internals/guide.rst +334 -0
  298. celery_asyncio-6.0.0a1/docs/internals/index.rst +18 -0
  299. celery_asyncio-6.0.0a1/docs/internals/protocol.rst +397 -0
  300. celery_asyncio-6.0.0a1/docs/internals/reference/celery._state.rst +11 -0
  301. celery_asyncio-6.0.0a1/docs/internals/reference/celery.app.annotations.rst +11 -0
  302. celery_asyncio-6.0.0a1/docs/internals/reference/celery.app.routes.rst +11 -0
  303. celery_asyncio-6.0.0a1/docs/internals/reference/celery.app.trace.rst +11 -0
  304. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.arangodb.rst +11 -0
  305. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.asynchronous.rst +13 -0
  306. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.azureblockblob.rst +11 -0
  307. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.base.rst +13 -0
  308. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.cache.rst +11 -0
  309. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.cassandra.rst +11 -0
  310. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.consul.rst +11 -0
  311. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.cosmosdbsql.rst +11 -0
  312. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.couchbase.rst +11 -0
  313. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.couchdb.rst +11 -0
  314. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.database.models.rst +11 -0
  315. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.database.rst +11 -0
  316. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.database.session.rst +11 -0
  317. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.dynamodb.rst +11 -0
  318. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.elasticsearch.rst +11 -0
  319. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.filesystem.rst +11 -0
  320. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.gcs.rst +11 -0
  321. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.mongodb.rst +11 -0
  322. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.redis.rst +11 -0
  323. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.rpc.rst +11 -0
  324. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.rst +11 -0
  325. celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.s3.rst +11 -0
  326. celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.base.rst +11 -0
  327. celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.eventlet.rst +11 -0
  328. celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.gevent.rst +11 -0
  329. celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.prefork.rst +11 -0
  330. celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.rst +11 -0
  331. celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.solo.rst +11 -0
  332. celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.thread.rst +11 -0
  333. celery_asyncio-6.0.0a1/docs/internals/reference/celery.events.cursesmon.rst +11 -0
  334. celery_asyncio-6.0.0a1/docs/internals/reference/celery.events.dumper.rst +11 -0
  335. celery_asyncio-6.0.0a1/docs/internals/reference/celery.events.snapshot.rst +11 -0
  336. celery_asyncio-6.0.0a1/docs/internals/reference/celery.platforms.rst +11 -0
  337. celery_asyncio-6.0.0a1/docs/internals/reference/celery.security.certificate.rst +11 -0
  338. celery_asyncio-6.0.0a1/docs/internals/reference/celery.security.key.rst +11 -0
  339. celery_asyncio-6.0.0a1/docs/internals/reference/celery.security.serialization.rst +11 -0
  340. celery_asyncio-6.0.0a1/docs/internals/reference/celery.security.utils.rst +11 -0
  341. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.abstract.rst +11 -0
  342. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.collections.rst +12 -0
  343. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.deprecated.rst +11 -0
  344. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.dispatch.rst +11 -0
  345. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.dispatch.signal.rst +11 -0
  346. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.functional.rst +11 -0
  347. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.graph.rst +11 -0
  348. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.imports.rst +11 -0
  349. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.iso8601.rst +11 -0
  350. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.log.rst +11 -0
  351. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.nodenames.rst +11 -0
  352. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.objects.rst +11 -0
  353. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.rst +11 -0
  354. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.saferepr.rst +11 -0
  355. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.serialization.rst +11 -0
  356. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.sysinfo.rst +11 -0
  357. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.term.rst +11 -0
  358. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.text.rst +11 -0
  359. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.threads.rst +11 -0
  360. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.time.rst +11 -0
  361. celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.timer2.rst +11 -0
  362. celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.autoscale.rst +11 -0
  363. celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.components.rst +11 -0
  364. celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.control.rst +11 -0
  365. celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.heartbeat.rst +11 -0
  366. celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.loops.rst +11 -0
  367. celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.pidbox.rst +11 -0
  368. celery_asyncio-6.0.0a1/docs/internals/reference/index.rst +78 -0
  369. celery_asyncio-6.0.0a1/docs/internals/worker.rst +57 -0
  370. celery_asyncio-6.0.0a1/docs/make.bat +278 -0
  371. celery_asyncio-6.0.0a1/docs/reference/celery.app.amqp.rst +56 -0
  372. celery_asyncio-6.0.0a1/docs/reference/celery.app.autoretry.rst +11 -0
  373. celery_asyncio-6.0.0a1/docs/reference/celery.app.backends.rst +11 -0
  374. celery_asyncio-6.0.0a1/docs/reference/celery.app.builtins.rst +11 -0
  375. celery_asyncio-6.0.0a1/docs/reference/celery.app.control.rst +11 -0
  376. celery_asyncio-6.0.0a1/docs/reference/celery.app.defaults.rst +11 -0
  377. celery_asyncio-6.0.0a1/docs/reference/celery.app.events.rst +11 -0
  378. celery_asyncio-6.0.0a1/docs/reference/celery.app.log.rst +11 -0
  379. celery_asyncio-6.0.0a1/docs/reference/celery.app.registry.rst +11 -0
  380. celery_asyncio-6.0.0a1/docs/reference/celery.app.rst +19 -0
  381. celery_asyncio-6.0.0a1/docs/reference/celery.app.task.rst +10 -0
  382. celery_asyncio-6.0.0a1/docs/reference/celery.app.utils.rst +11 -0
  383. celery_asyncio-6.0.0a1/docs/reference/celery.apps.beat.rst +11 -0
  384. celery_asyncio-6.0.0a1/docs/reference/celery.apps.multi.rst +11 -0
  385. celery_asyncio-6.0.0a1/docs/reference/celery.apps.worker.rst +11 -0
  386. celery_asyncio-6.0.0a1/docs/reference/celery.beat.rst +11 -0
  387. celery_asyncio-6.0.0a1/docs/reference/celery.bin.amqp.rst +11 -0
  388. celery_asyncio-6.0.0a1/docs/reference/celery.bin.base.rst +11 -0
  389. celery_asyncio-6.0.0a1/docs/reference/celery.bin.beat.rst +11 -0
  390. celery_asyncio-6.0.0a1/docs/reference/celery.bin.call.rst +11 -0
  391. celery_asyncio-6.0.0a1/docs/reference/celery.bin.celery.rst +11 -0
  392. celery_asyncio-6.0.0a1/docs/reference/celery.bin.control.rst +11 -0
  393. celery_asyncio-6.0.0a1/docs/reference/celery.bin.events.rst +11 -0
  394. celery_asyncio-6.0.0a1/docs/reference/celery.bin.graph.rst +11 -0
  395. celery_asyncio-6.0.0a1/docs/reference/celery.bin.list.rst +11 -0
  396. celery_asyncio-6.0.0a1/docs/reference/celery.bin.logtool.rst +11 -0
  397. celery_asyncio-6.0.0a1/docs/reference/celery.bin.migrate.rst +11 -0
  398. celery_asyncio-6.0.0a1/docs/reference/celery.bin.multi.rst +11 -0
  399. celery_asyncio-6.0.0a1/docs/reference/celery.bin.purge.rst +11 -0
  400. celery_asyncio-6.0.0a1/docs/reference/celery.bin.result.rst +11 -0
  401. celery_asyncio-6.0.0a1/docs/reference/celery.bin.shell.rst +11 -0
  402. celery_asyncio-6.0.0a1/docs/reference/celery.bin.upgrade.rst +11 -0
  403. celery_asyncio-6.0.0a1/docs/reference/celery.bin.worker.rst +11 -0
  404. celery_asyncio-6.0.0a1/docs/reference/celery.bootsteps.rst +11 -0
  405. celery_asyncio-6.0.0a1/docs/reference/celery.contrib.abortable.rst +12 -0
  406. celery_asyncio-6.0.0a1/docs/reference/celery.contrib.django.task.rst +17 -0
  407. celery_asyncio-6.0.0a1/docs/reference/celery.contrib.migrate.rst +12 -0
  408. celery_asyncio-6.0.0a1/docs/reference/celery.contrib.pytest.rst +16 -0
  409. celery_asyncio-6.0.0a1/docs/reference/celery.contrib.rdb.rst +11 -0
  410. celery_asyncio-6.0.0a1/docs/reference/celery.contrib.sphinx.rst +8 -0
  411. celery_asyncio-6.0.0a1/docs/reference/celery.contrib.testing.app.rst +16 -0
  412. celery_asyncio-6.0.0a1/docs/reference/celery.contrib.testing.manager.rst +16 -0
  413. celery_asyncio-6.0.0a1/docs/reference/celery.contrib.testing.mocks.rst +16 -0
  414. celery_asyncio-6.0.0a1/docs/reference/celery.contrib.testing.worker.rst +16 -0
  415. celery_asyncio-6.0.0a1/docs/reference/celery.events.dispatcher.rst +11 -0
  416. celery_asyncio-6.0.0a1/docs/reference/celery.events.event.rst +11 -0
  417. celery_asyncio-6.0.0a1/docs/reference/celery.events.receiver.rst +11 -0
  418. celery_asyncio-6.0.0a1/docs/reference/celery.events.rst +11 -0
  419. celery_asyncio-6.0.0a1/docs/reference/celery.events.state.rst +11 -0
  420. celery_asyncio-6.0.0a1/docs/reference/celery.exceptions.rst +11 -0
  421. celery_asyncio-6.0.0a1/docs/reference/celery.loaders.app.rst +11 -0
  422. celery_asyncio-6.0.0a1/docs/reference/celery.loaders.base.rst +11 -0
  423. celery_asyncio-6.0.0a1/docs/reference/celery.loaders.default.rst +11 -0
  424. celery_asyncio-6.0.0a1/docs/reference/celery.loaders.rst +11 -0
  425. celery_asyncio-6.0.0a1/docs/reference/celery.result.rst +11 -0
  426. celery_asyncio-6.0.0a1/docs/reference/celery.rst +160 -0
  427. celery_asyncio-6.0.0a1/docs/reference/celery.schedules.rst +11 -0
  428. celery_asyncio-6.0.0a1/docs/reference/celery.security.rst +11 -0
  429. celery_asyncio-6.0.0a1/docs/reference/celery.signals.rst +11 -0
  430. celery_asyncio-6.0.0a1/docs/reference/celery.states.rst +8 -0
  431. celery_asyncio-6.0.0a1/docs/reference/celery.utils.debug.rst +48 -0
  432. celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.agent.rst +11 -0
  433. celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.connection.rst +11 -0
  434. celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.consumer.rst +11 -0
  435. celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.control.rst +11 -0
  436. celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.events.rst +11 -0
  437. celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.gossip.rst +11 -0
  438. celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.heart.rst +11 -0
  439. celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.mingle.rst +11 -0
  440. celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.rst +11 -0
  441. celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.tasks.rst +11 -0
  442. celery_asyncio-6.0.0a1/docs/reference/celery.worker.request.rst +11 -0
  443. celery_asyncio-6.0.0a1/docs/reference/celery.worker.rst +11 -0
  444. celery_asyncio-6.0.0a1/docs/reference/celery.worker.state.rst +11 -0
  445. celery_asyncio-6.0.0a1/docs/reference/celery.worker.strategy.rst +11 -0
  446. celery_asyncio-6.0.0a1/docs/reference/celery.worker.worker.rst +11 -0
  447. celery_asyncio-6.0.0a1/docs/reference/cli.rst +10 -0
  448. celery_asyncio-6.0.0a1/docs/reference/index.rst +89 -0
  449. celery_asyncio-6.0.0a1/docs/sec/CELERYSA-0001.txt +93 -0
  450. celery_asyncio-6.0.0a1/docs/sec/CELERYSA-0002.txt +90 -0
  451. celery_asyncio-6.0.0a1/docs/sec/CELERYSA-0003.txt +59 -0
  452. celery_asyncio-6.0.0a1/docs/spelling_wordlist.txt +597 -0
  453. celery_asyncio-6.0.0a1/docs/templates/readme.txt +32 -0
  454. celery_asyncio-6.0.0a1/docs/tutorials/daemonizing.html +6 -0
  455. celery_asyncio-6.0.0a1/docs/tutorials/debugging.html +6 -0
  456. celery_asyncio-6.0.0a1/docs/tutorials/index.rst +11 -0
  457. celery_asyncio-6.0.0a1/docs/tutorials/task-cookbook.rst +80 -0
  458. celery_asyncio-6.0.0a1/docs/userguide/application.rst +556 -0
  459. celery_asyncio-6.0.0a1/docs/userguide/calling.rst +832 -0
  460. celery_asyncio-6.0.0a1/docs/userguide/canvas.rst +1365 -0
  461. celery_asyncio-6.0.0a1/docs/userguide/concurrency/eventlet.rst +71 -0
  462. celery_asyncio-6.0.0a1/docs/userguide/concurrency/gevent.rst +79 -0
  463. celery_asyncio-6.0.0a1/docs/userguide/concurrency/index.rst +42 -0
  464. celery_asyncio-6.0.0a1/docs/userguide/configuration.rst +4190 -0
  465. celery_asyncio-6.0.0a1/docs/userguide/daemonizing.rst +554 -0
  466. celery_asyncio-6.0.0a1/docs/userguide/debugging.rst +119 -0
  467. celery_asyncio-6.0.0a1/docs/userguide/extending.rst +929 -0
  468. celery_asyncio-6.0.0a1/docs/userguide/index.rst +30 -0
  469. celery_asyncio-6.0.0a1/docs/userguide/monitoring.rst +837 -0
  470. celery_asyncio-6.0.0a1/docs/userguide/optimizing.rst +237 -0
  471. celery_asyncio-6.0.0a1/docs/userguide/periodic-tasks.rst +485 -0
  472. celery_asyncio-6.0.0a1/docs/userguide/routing.rst +813 -0
  473. celery_asyncio-6.0.0a1/docs/userguide/security.rst +259 -0
  474. celery_asyncio-6.0.0a1/docs/userguide/signals.rst +861 -0
  475. celery_asyncio-6.0.0a1/docs/userguide/sphinx.rst +16 -0
  476. celery_asyncio-6.0.0a1/docs/userguide/tasks.rst +2312 -0
  477. celery_asyncio-6.0.0a1/docs/userguide/testing.rst +401 -0
  478. celery_asyncio-6.0.0a1/docs/userguide/workers.rst +1245 -0
  479. celery_asyncio-6.0.0a1/examples/README.rst +18 -0
  480. celery_asyncio-6.0.0a1/examples/app/myapp.py +45 -0
  481. celery_asyncio-6.0.0a1/examples/celery_http_gateway/README.rst +40 -0
  482. celery_asyncio-6.0.0a1/examples/celery_http_gateway/__init__.py +0 -0
  483. celery_asyncio-6.0.0a1/examples/celery_http_gateway/manage.py +15 -0
  484. celery_asyncio-6.0.0a1/examples/celery_http_gateway/settings.py +99 -0
  485. celery_asyncio-6.0.0a1/examples/celery_http_gateway/tasks.py +6 -0
  486. celery_asyncio-6.0.0a1/examples/celery_http_gateway/urls.py +17 -0
  487. celery_asyncio-6.0.0a1/examples/django/README.rst +66 -0
  488. celery_asyncio-6.0.0a1/examples/django/demoapp/__init__.py +0 -0
  489. celery_asyncio-6.0.0a1/examples/django/demoapp/migrations/0001_initial.py +21 -0
  490. celery_asyncio-6.0.0a1/examples/django/demoapp/migrations/__init__.py +0 -0
  491. celery_asyncio-6.0.0a1/examples/django/demoapp/models.py +5 -0
  492. celery_asyncio-6.0.0a1/examples/django/demoapp/tasks.py +32 -0
  493. celery_asyncio-6.0.0a1/examples/django/demoapp/views.py +1 -0
  494. celery_asyncio-6.0.0a1/examples/django/manage.py +11 -0
  495. celery_asyncio-6.0.0a1/examples/django/proj/__init__.py +5 -0
  496. celery_asyncio-6.0.0a1/examples/django/proj/celery.py +22 -0
  497. celery_asyncio-6.0.0a1/examples/django/proj/settings.py +138 -0
  498. celery_asyncio-6.0.0a1/examples/django/proj/urls.py +18 -0
  499. celery_asyncio-6.0.0a1/examples/django/proj/wsgi.py +30 -0
  500. celery_asyncio-6.0.0a1/examples/django/requirements.txt +3 -0
  501. celery_asyncio-6.0.0a1/examples/eventlet/README.rst +53 -0
  502. celery_asyncio-6.0.0a1/examples/eventlet/bulk_task_producer.py +63 -0
  503. celery_asyncio-6.0.0a1/examples/eventlet/celeryconfig.py +14 -0
  504. celery_asyncio-6.0.0a1/examples/eventlet/tasks.py +14 -0
  505. celery_asyncio-6.0.0a1/examples/eventlet/webcrawler.py +68 -0
  506. celery_asyncio-6.0.0a1/examples/gevent/README.rst +51 -0
  507. celery_asyncio-6.0.0a1/examples/gevent/celeryconfig.py +13 -0
  508. celery_asyncio-6.0.0a1/examples/gevent/tasks.py +15 -0
  509. celery_asyncio-6.0.0a1/examples/next-steps/proj/__init__.py +0 -0
  510. celery_asyncio-6.0.0a1/examples/next-steps/proj/celery.py +14 -0
  511. celery_asyncio-6.0.0a1/examples/next-steps/proj/tasks.py +16 -0
  512. celery_asyncio-6.0.0a1/examples/next-steps/setup.py +39 -0
  513. celery_asyncio-6.0.0a1/examples/periodic-tasks/myapp.py +60 -0
  514. celery_asyncio-6.0.0a1/examples/pydantic/__init__.py +0 -0
  515. celery_asyncio-6.0.0a1/examples/pydantic/tasks.py +21 -0
  516. celery_asyncio-6.0.0a1/examples/quorum-queues/declare_queue.py +15 -0
  517. celery_asyncio-6.0.0a1/examples/quorum-queues/myapp.py +149 -0
  518. celery_asyncio-6.0.0a1/examples/quorum-queues/setup_cluster.sh +117 -0
  519. celery_asyncio-6.0.0a1/examples/quorum-queues/test_cluster.sh +41 -0
  520. celery_asyncio-6.0.0a1/examples/resultgraph/tasks.py +103 -0
  521. celery_asyncio-6.0.0a1/examples/security/mysecureapp.py +53 -0
  522. celery_asyncio-6.0.0a1/examples/security/ssl/worker.key +51 -0
  523. celery_asyncio-6.0.0a1/examples/security/ssl/worker.pem +31 -0
  524. celery_asyncio-6.0.0a1/examples/stamping/config.py +7 -0
  525. celery_asyncio-6.0.0a1/examples/stamping/examples.py +46 -0
  526. celery_asyncio-6.0.0a1/examples/stamping/myapp.py +51 -0
  527. celery_asyncio-6.0.0a1/examples/stamping/revoke_example.py +75 -0
  528. celery_asyncio-6.0.0a1/examples/stamping/tasks.py +104 -0
  529. celery_asyncio-6.0.0a1/examples/stamping/visitors.py +67 -0
  530. celery_asyncio-6.0.0a1/examples/tutorial/tasks.py +12 -0
  531. celery_asyncio-6.0.0a1/extra/WindowsCMD-AzureWebJob/Celery/run.cmd +31 -0
  532. celery_asyncio-6.0.0a1/extra/WindowsCMD-AzureWebJob/Celery/settings.job +1 -0
  533. celery_asyncio-6.0.0a1/extra/WindowsCMD-AzureWebJob/CeleryBeat/run.cmd +39 -0
  534. celery_asyncio-6.0.0a1/extra/WindowsCMD-AzureWebJob/CeleryBeat/settings.job +1 -0
  535. celery_asyncio-6.0.0a1/extra/bash-completion/celery.bash +21 -0
  536. celery_asyncio-6.0.0a1/extra/generic-init.d/celerybeat +329 -0
  537. celery_asyncio-6.0.0a1/extra/generic-init.d/celeryd +411 -0
  538. celery_asyncio-6.0.0a1/extra/macOS/org.celeryq.beat.plist +29 -0
  539. celery_asyncio-6.0.0a1/extra/macOS/org.celeryq.worker.plist +29 -0
  540. celery_asyncio-6.0.0a1/extra/release/attribution.py +34 -0
  541. celery_asyncio-6.0.0a1/extra/release/gen-cert.sh +22 -0
  542. celery_asyncio-6.0.0a1/extra/release/sphinx2rst_config.py +10 -0
  543. celery_asyncio-6.0.0a1/extra/supervisord/celery.sh +3 -0
  544. celery_asyncio-6.0.0a1/extra/supervisord/celerybeat.conf +25 -0
  545. celery_asyncio-6.0.0a1/extra/supervisord/celeryd.conf +34 -0
  546. celery_asyncio-6.0.0a1/extra/supervisord/supervisord.conf +28 -0
  547. celery_asyncio-6.0.0a1/extra/systemd/celery.conf +16 -0
  548. celery_asyncio-6.0.0a1/extra/systemd/celery.service +22 -0
  549. celery_asyncio-6.0.0a1/extra/systemd/celery.tmpfiles +2 -0
  550. celery_asyncio-6.0.0a1/extra/systemd/celerybeat.service +17 -0
  551. celery_asyncio-6.0.0a1/extra/zsh-completion/celery.zsh +133 -0
  552. celery_asyncio-6.0.0a1/helm-chart/.helmignore +23 -0
  553. celery_asyncio-6.0.0a1/helm-chart/Chart.yaml +6 -0
  554. celery_asyncio-6.0.0a1/helm-chart/README.rst +77 -0
  555. celery_asyncio-6.0.0a1/helm-chart/templates/_helpers.tpl +62 -0
  556. celery_asyncio-6.0.0a1/helm-chart/templates/configmap.yaml +8 -0
  557. celery_asyncio-6.0.0a1/helm-chart/templates/deployment.yaml +70 -0
  558. celery_asyncio-6.0.0a1/helm-chart/templates/secret.yaml +13 -0
  559. celery_asyncio-6.0.0a1/helm-chart/templates/serviceaccount.yaml +14 -0
  560. celery_asyncio-6.0.0a1/helm-chart/values.yaml +93 -0
  561. celery_asyncio-6.0.0a1/pyproject.toml +268 -0
  562. celery_asyncio-6.0.0a1/requirements/README.rst +65 -0
  563. celery_asyncio-6.0.0a1/requirements/default.txt +10 -0
  564. celery_asyncio-6.0.0a1/requirements/deps/mock.txt +1 -0
  565. celery_asyncio-6.0.0a1/requirements/dev.txt +5 -0
  566. celery_asyncio-6.0.0a1/requirements/docs.txt +9 -0
  567. celery_asyncio-6.0.0a1/requirements/extras/arangodb.txt +1 -0
  568. celery_asyncio-6.0.0a1/requirements/extras/auth.txt +1 -0
  569. celery_asyncio-6.0.0a1/requirements/extras/azureblockblob.txt +2 -0
  570. celery_asyncio-6.0.0a1/requirements/extras/brotli.txt +2 -0
  571. celery_asyncio-6.0.0a1/requirements/extras/cassandra.txt +1 -0
  572. celery_asyncio-6.0.0a1/requirements/extras/consul.txt +1 -0
  573. celery_asyncio-6.0.0a1/requirements/extras/cosmosdbsql.txt +1 -0
  574. celery_asyncio-6.0.0a1/requirements/extras/couchbase.txt +1 -0
  575. celery_asyncio-6.0.0a1/requirements/extras/couchdb.txt +1 -0
  576. celery_asyncio-6.0.0a1/requirements/extras/django.txt +1 -0
  577. celery_asyncio-6.0.0a1/requirements/extras/dynamodb.txt +1 -0
  578. celery_asyncio-6.0.0a1/requirements/extras/elasticsearch.txt +2 -0
  579. celery_asyncio-6.0.0a1/requirements/extras/eventlet.txt +1 -0
  580. celery_asyncio-6.0.0a1/requirements/extras/gcs.txt +4 -0
  581. celery_asyncio-6.0.0a1/requirements/extras/gevent.txt +1 -0
  582. celery_asyncio-6.0.0a1/requirements/extras/librabbitmq.txt +1 -0
  583. celery_asyncio-6.0.0a1/requirements/extras/memcache.txt +1 -0
  584. celery_asyncio-6.0.0a1/requirements/extras/mongodb.txt +1 -0
  585. celery_asyncio-6.0.0a1/requirements/extras/msgpack.txt +1 -0
  586. celery_asyncio-6.0.0a1/requirements/extras/pydantic.txt +2 -0
  587. celery_asyncio-6.0.0a1/requirements/extras/pymemcache.txt +1 -0
  588. celery_asyncio-6.0.0a1/requirements/extras/pyro.txt +1 -0
  589. celery_asyncio-6.0.0a1/requirements/extras/pytest.txt +1 -0
  590. celery_asyncio-6.0.0a1/requirements/extras/redis.txt +1 -0
  591. celery_asyncio-6.0.0a1/requirements/extras/s3.txt +1 -0
  592. celery_asyncio-6.0.0a1/requirements/extras/slmq.txt +1 -0
  593. celery_asyncio-6.0.0a1/requirements/extras/solar.txt +1 -0
  594. celery_asyncio-6.0.0a1/requirements/extras/sphinxautobuild.txt +1 -0
  595. celery_asyncio-6.0.0a1/requirements/extras/sqlalchemy.txt +1 -0
  596. celery_asyncio-6.0.0a1/requirements/extras/sqs.txt +5 -0
  597. celery_asyncio-6.0.0a1/requirements/extras/tblib.txt +1 -0
  598. celery_asyncio-6.0.0a1/requirements/extras/thread.txt +1 -0
  599. celery_asyncio-6.0.0a1/requirements/extras/yaml.txt +1 -0
  600. celery_asyncio-6.0.0a1/requirements/extras/zeromq.txt +1 -0
  601. celery_asyncio-6.0.0a1/requirements/extras/zookeeper.txt +1 -0
  602. celery_asyncio-6.0.0a1/requirements/extras/zstd.txt +1 -0
  603. celery_asyncio-6.0.0a1/requirements/pkgutils.txt +11 -0
  604. celery_asyncio-6.0.0a1/requirements/security.txt +1 -0
  605. celery_asyncio-6.0.0a1/requirements/test-ci-base.txt +7 -0
  606. celery_asyncio-6.0.0a1/requirements/test-ci-default.txt +25 -0
  607. celery_asyncio-6.0.0a1/requirements/test-integration.txt +6 -0
  608. celery_asyncio-6.0.0a1/requirements/test-pypy3.txt +1 -0
  609. celery_asyncio-6.0.0a1/requirements/test.txt +19 -0
  610. celery_asyncio-6.0.0a1/setup.cfg +43 -0
  611. celery_asyncio-6.0.0a1/t/__init__.py +0 -0
  612. celery_asyncio-6.0.0a1/t/benchmarks/bench_worker.py +110 -0
  613. celery_asyncio-6.0.0a1/t/integration/__init__.py +0 -0
  614. celery_asyncio-6.0.0a1/t/integration/conftest.py +106 -0
  615. celery_asyncio-6.0.0a1/t/integration/tasks.py +527 -0
  616. celery_asyncio-6.0.0a1/t/integration/test_backend.py +40 -0
  617. celery_asyncio-6.0.0a1/t/integration/test_canvas.py +3747 -0
  618. celery_asyncio-6.0.0a1/t/integration/test_inspect.py +237 -0
  619. celery_asyncio-6.0.0a1/t/integration/test_loader.py +38 -0
  620. celery_asyncio-6.0.0a1/t/integration/test_mem_leak_in_exception_handling.py +261 -0
  621. celery_asyncio-6.0.0a1/t/integration/test_native_delayed_delivery_binding.py +190 -0
  622. celery_asyncio-6.0.0a1/t/integration/test_quorum_queue_qos_cluster_simulation.py +151 -0
  623. celery_asyncio-6.0.0a1/t/integration/test_rabbitmq_chord_unlock_routing.py +155 -0
  624. celery_asyncio-6.0.0a1/t/integration/test_rabbitmq_default_queue_type_fallback.py +86 -0
  625. celery_asyncio-6.0.0a1/t/integration/test_security.py +118 -0
  626. celery_asyncio-6.0.0a1/t/integration/test_serialization.py +54 -0
  627. celery_asyncio-6.0.0a1/t/integration/test_serialization_config.py +5 -0
  628. celery_asyncio-6.0.0a1/t/integration/test_tasks.py +770 -0
  629. celery_asyncio-6.0.0a1/t/integration/test_worker.py +18 -0
  630. celery_asyncio-6.0.0a1/t/integration/test_worker_config.py +12 -0
  631. celery_asyncio-6.0.0a1/t/skip.py +6 -0
  632. celery_asyncio-6.0.0a1/t/smoke/__init__.py +0 -0
  633. celery_asyncio-6.0.0a1/t/smoke/conftest.py +155 -0
  634. celery_asyncio-6.0.0a1/t/smoke/operations/__init__.py +0 -0
  635. celery_asyncio-6.0.0a1/t/smoke/operations/task_termination.py +48 -0
  636. celery_asyncio-6.0.0a1/t/smoke/operations/worker_kill.py +47 -0
  637. celery_asyncio-6.0.0a1/t/smoke/operations/worker_restart.py +42 -0
  638. celery_asyncio-6.0.0a1/t/smoke/redis.conf +6 -0
  639. celery_asyncio-6.0.0a1/t/smoke/signals.py +28 -0
  640. celery_asyncio-6.0.0a1/t/smoke/tasks.py +81 -0
  641. celery_asyncio-6.0.0a1/t/smoke/tests/__init__.py +0 -0
  642. celery_asyncio-6.0.0a1/t/smoke/tests/failover/__init__.py +0 -0
  643. celery_asyncio-6.0.0a1/t/smoke/tests/failover/test_broker_failover.py +60 -0
  644. celery_asyncio-6.0.0a1/t/smoke/tests/failover/test_worker_failover.py +55 -0
  645. celery_asyncio-6.0.0a1/t/smoke/tests/quorum_queues/__init__.py +0 -0
  646. celery_asyncio-6.0.0a1/t/smoke/tests/quorum_queues/conftest.py +119 -0
  647. celery_asyncio-6.0.0a1/t/smoke/tests/quorum_queues/test_native_delayed_delivery.py +283 -0
  648. celery_asyncio-6.0.0a1/t/smoke/tests/quorum_queues/test_quorum_queues.py +36 -0
  649. celery_asyncio-6.0.0a1/t/smoke/tests/stamping/__init__.py +0 -0
  650. celery_asyncio-6.0.0a1/t/smoke/tests/stamping/conftest.py +47 -0
  651. celery_asyncio-6.0.0a1/t/smoke/tests/stamping/signals.py +12 -0
  652. celery_asyncio-6.0.0a1/t/smoke/tests/stamping/tasks.py +22 -0
  653. celery_asyncio-6.0.0a1/t/smoke/tests/stamping/test_hybrid_cluster.py +160 -0
  654. celery_asyncio-6.0.0a1/t/smoke/tests/stamping/test_revoke.py +75 -0
  655. celery_asyncio-6.0.0a1/t/smoke/tests/stamping/test_visitor.py +40 -0
  656. celery_asyncio-6.0.0a1/t/smoke/tests/stamping/workers/__init__.py +0 -0
  657. celery_asyncio-6.0.0a1/t/smoke/tests/stamping/workers/legacy.py +57 -0
  658. celery_asyncio-6.0.0a1/t/smoke/tests/test_canvas.py +193 -0
  659. celery_asyncio-6.0.0a1/t/smoke/tests/test_consumer.py +147 -0
  660. celery_asyncio-6.0.0a1/t/smoke/tests/test_control.py +18 -0
  661. celery_asyncio-6.0.0a1/t/smoke/tests/test_signals.py +60 -0
  662. celery_asyncio-6.0.0a1/t/smoke/tests/test_tasks.py +146 -0
  663. celery_asyncio-6.0.0a1/t/smoke/tests/test_thread_safe.py +73 -0
  664. celery_asyncio-6.0.0a1/t/smoke/tests/test_worker.py +440 -0
  665. celery_asyncio-6.0.0a1/t/smoke/workers/__init__.py +0 -0
  666. celery_asyncio-6.0.0a1/t/smoke/workers/alt.py +58 -0
  667. celery_asyncio-6.0.0a1/t/smoke/workers/dev.py +85 -0
  668. celery_asyncio-6.0.0a1/t/smoke/workers/docker/dev +51 -0
  669. celery_asyncio-6.0.0a1/t/smoke/workers/docker/pypi +51 -0
  670. celery_asyncio-6.0.0a1/t/smoke/workers/latest.py +62 -0
  671. celery_asyncio-6.0.0a1/t/smoke/workers/other.py +62 -0
  672. celery_asyncio-6.0.0a1/t/unit/__init__.py +0 -0
  673. celery_asyncio-6.0.0a1/t/unit/app/__init__.py +0 -0
  674. celery_asyncio-6.0.0a1/t/unit/app/test_amqp.py +455 -0
  675. celery_asyncio-6.0.0a1/t/unit/app/test_annotations.py +52 -0
  676. celery_asyncio-6.0.0a1/t/unit/app/test_app.py +1760 -0
  677. celery_asyncio-6.0.0a1/t/unit/app/test_backends.py +136 -0
  678. celery_asyncio-6.0.0a1/t/unit/app/test_beat.py +955 -0
  679. celery_asyncio-6.0.0a1/t/unit/app/test_builtins.py +184 -0
  680. celery_asyncio-6.0.0a1/t/unit/app/test_celery.py +17 -0
  681. celery_asyncio-6.0.0a1/t/unit/app/test_control.py +582 -0
  682. celery_asyncio-6.0.0a1/t/unit/app/test_defaults.py +47 -0
  683. celery_asyncio-6.0.0a1/t/unit/app/test_exceptions.py +33 -0
  684. celery_asyncio-6.0.0a1/t/unit/app/test_loaders.py +307 -0
  685. celery_asyncio-6.0.0a1/t/unit/app/test_log.py +359 -0
  686. celery_asyncio-6.0.0a1/t/unit/app/test_preload_cli.py +56 -0
  687. celery_asyncio-6.0.0a1/t/unit/app/test_registry.py +77 -0
  688. celery_asyncio-6.0.0a1/t/unit/app/test_routes.py +234 -0
  689. celery_asyncio-6.0.0a1/t/unit/app/test_schedules.py +1016 -0
  690. celery_asyncio-6.0.0a1/t/unit/app/test_trace.py +134 -0
  691. celery_asyncio-6.0.0a1/t/unit/app/test_utils.py +59 -0
  692. celery_asyncio-6.0.0a1/t/unit/apps/__init__.py +0 -0
  693. celery_asyncio-6.0.0a1/t/unit/apps/test_multi.py +441 -0
  694. celery_asyncio-6.0.0a1/t/unit/backends/__init__.py +0 -0
  695. celery_asyncio-6.0.0a1/t/unit/backends/test_arangodb.py +228 -0
  696. celery_asyncio-6.0.0a1/t/unit/backends/test_asynchronous.py +271 -0
  697. celery_asyncio-6.0.0a1/t/unit/backends/test_azureblockblob.py +228 -0
  698. celery_asyncio-6.0.0a1/t/unit/backends/test_base.py +1647 -0
  699. celery_asyncio-6.0.0a1/t/unit/backends/test_cache.py +284 -0
  700. celery_asyncio-6.0.0a1/t/unit/backends/test_cassandra.py +278 -0
  701. celery_asyncio-6.0.0a1/t/unit/backends/test_consul.py +43 -0
  702. celery_asyncio-6.0.0a1/t/unit/backends/test_cosmosdbsql.py +139 -0
  703. celery_asyncio-6.0.0a1/t/unit/backends/test_couchbase.py +138 -0
  704. celery_asyncio-6.0.0a1/t/unit/backends/test_couchdb.py +213 -0
  705. celery_asyncio-6.0.0a1/t/unit/backends/test_database.py +469 -0
  706. celery_asyncio-6.0.0a1/t/unit/backends/test_dynamodb.py +633 -0
  707. celery_asyncio-6.0.0a1/t/unit/backends/test_elasticsearch.py +972 -0
  708. celery_asyncio-6.0.0a1/t/unit/backends/test_filesystem.py +130 -0
  709. celery_asyncio-6.0.0a1/t/unit/backends/test_gcs.py +589 -0
  710. celery_asyncio-6.0.0a1/t/unit/backends/test_mongodb.py +775 -0
  711. celery_asyncio-6.0.0a1/t/unit/backends/test_redis.py +1419 -0
  712. celery_asyncio-6.0.0a1/t/unit/backends/test_rpc.py +114 -0
  713. celery_asyncio-6.0.0a1/t/unit/backends/test_s3.py +186 -0
  714. celery_asyncio-6.0.0a1/t/unit/bin/__init__.py +0 -0
  715. celery_asyncio-6.0.0a1/t/unit/bin/celery.py +1 -0
  716. celery_asyncio-6.0.0a1/t/unit/bin/proj/__init__.py +3 -0
  717. celery_asyncio-6.0.0a1/t/unit/bin/proj/app.py +4 -0
  718. celery_asyncio-6.0.0a1/t/unit/bin/proj/app2.py +1 -0
  719. celery_asyncio-6.0.0a1/t/unit/bin/proj/app_with_custom_cmds.py +24 -0
  720. celery_asyncio-6.0.0a1/t/unit/bin/proj/daemon.py +4 -0
  721. celery_asyncio-6.0.0a1/t/unit/bin/proj/daemon_config.py +22 -0
  722. celery_asyncio-6.0.0a1/t/unit/bin/proj/pyramid_celery_app.py +53 -0
  723. celery_asyncio-6.0.0a1/t/unit/bin/proj/scheduler.py +6 -0
  724. celery_asyncio-6.0.0a1/t/unit/bin/test_beat.py +34 -0
  725. celery_asyncio-6.0.0a1/t/unit/bin/test_control.py +82 -0
  726. celery_asyncio-6.0.0a1/t/unit/bin/test_daemonization.py +22 -0
  727. celery_asyncio-6.0.0a1/t/unit/bin/test_multi.py +0 -0
  728. celery_asyncio-6.0.0a1/t/unit/bin/test_worker.py +127 -0
  729. celery_asyncio-6.0.0a1/t/unit/concurrency/__init__.py +0 -0
  730. celery_asyncio-6.0.0a1/t/unit/concurrency/test_concurrency.py +188 -0
  731. celery_asyncio-6.0.0a1/t/unit/concurrency/test_eventlet.py +165 -0
  732. celery_asyncio-6.0.0a1/t/unit/concurrency/test_gevent.py +151 -0
  733. celery_asyncio-6.0.0a1/t/unit/concurrency/test_pool.py +72 -0
  734. celery_asyncio-6.0.0a1/t/unit/concurrency/test_prefork.py +625 -0
  735. celery_asyncio-6.0.0a1/t/unit/concurrency/test_solo.py +31 -0
  736. celery_asyncio-6.0.0a1/t/unit/concurrency/test_thread.py +31 -0
  737. celery_asyncio-6.0.0a1/t/unit/conftest.py +787 -0
  738. celery_asyncio-6.0.0a1/t/unit/contrib/__init__.py +0 -0
  739. celery_asyncio-6.0.0a1/t/unit/contrib/django/__init__.py +0 -0
  740. celery_asyncio-6.0.0a1/t/unit/contrib/django/test_task.py +32 -0
  741. celery_asyncio-6.0.0a1/t/unit/contrib/proj/__init__.py +0 -0
  742. celery_asyncio-6.0.0a1/t/unit/contrib/proj/conf.py +7 -0
  743. celery_asyncio-6.0.0a1/t/unit/contrib/proj/contents.rst +7 -0
  744. celery_asyncio-6.0.0a1/t/unit/contrib/proj/foo.py +21 -0
  745. celery_asyncio-6.0.0a1/t/unit/contrib/proj/xyzzy.py +8 -0
  746. celery_asyncio-6.0.0a1/t/unit/contrib/test_abortable.py +44 -0
  747. celery_asyncio-6.0.0a1/t/unit/contrib/test_migrate.py +304 -0
  748. celery_asyncio-6.0.0a1/t/unit/contrib/test_pytest.py +31 -0
  749. celery_asyncio-6.0.0a1/t/unit/contrib/test_rdb.py +108 -0
  750. celery_asyncio-6.0.0a1/t/unit/contrib/test_sphinx.py +30 -0
  751. celery_asyncio-6.0.0a1/t/unit/contrib/test_worker.py +59 -0
  752. celery_asyncio-6.0.0a1/t/unit/events/__init__.py +0 -0
  753. celery_asyncio-6.0.0a1/t/unit/events/test_cursesmon.py +62 -0
  754. celery_asyncio-6.0.0a1/t/unit/events/test_dumper.py +70 -0
  755. celery_asyncio-6.0.0a1/t/unit/events/test_events.py +414 -0
  756. celery_asyncio-6.0.0a1/t/unit/events/test_snapshot.py +121 -0
  757. celery_asyncio-6.0.0a1/t/unit/events/test_state.py +699 -0
  758. celery_asyncio-6.0.0a1/t/unit/fixups/__init__.py +0 -0
  759. celery_asyncio-6.0.0a1/t/unit/fixups/test_django.py +377 -0
  760. celery_asyncio-6.0.0a1/t/unit/security/__init__.py +137 -0
  761. celery_asyncio-6.0.0a1/t/unit/security/case.py +7 -0
  762. celery_asyncio-6.0.0a1/t/unit/security/test_certificate.py +109 -0
  763. celery_asyncio-6.0.0a1/t/unit/security/test_key.py +45 -0
  764. celery_asyncio-6.0.0a1/t/unit/security/test_security.py +177 -0
  765. celery_asyncio-6.0.0a1/t/unit/security/test_serialization.py +71 -0
  766. celery_asyncio-6.0.0a1/t/unit/tasks/__init__.py +0 -0
  767. celery_asyncio-6.0.0a1/t/unit/tasks/test_canvas.py +1960 -0
  768. celery_asyncio-6.0.0a1/t/unit/tasks/test_chord.py +391 -0
  769. celery_asyncio-6.0.0a1/t/unit/tasks/test_context.py +86 -0
  770. celery_asyncio-6.0.0a1/t/unit/tasks/test_result.py +1059 -0
  771. celery_asyncio-6.0.0a1/t/unit/tasks/test_stamping.py +1315 -0
  772. celery_asyncio-6.0.0a1/t/unit/tasks/test_states.py +39 -0
  773. celery_asyncio-6.0.0a1/t/unit/tasks/test_tasks.py +1706 -0
  774. celery_asyncio-6.0.0a1/t/unit/tasks/test_trace.py +665 -0
  775. celery_asyncio-6.0.0a1/t/unit/tasks/unit_tasks.py +6 -0
  776. celery_asyncio-6.0.0a1/t/unit/test_canvas.py +33 -0
  777. celery_asyncio-6.0.0a1/t/unit/test_loops.py +57 -0
  778. celery_asyncio-6.0.0a1/t/unit/utils/__init__.py +0 -0
  779. celery_asyncio-6.0.0a1/t/unit/utils/test_annotations.py +96 -0
  780. celery_asyncio-6.0.0a1/t/unit/utils/test_collections.py +464 -0
  781. celery_asyncio-6.0.0a1/t/unit/utils/test_debug.py +86 -0
  782. celery_asyncio-6.0.0a1/t/unit/utils/test_deprecated.py +68 -0
  783. celery_asyncio-6.0.0a1/t/unit/utils/test_dispatcher.py +197 -0
  784. celery_asyncio-6.0.0a1/t/unit/utils/test_functional.py +490 -0
  785. celery_asyncio-6.0.0a1/t/unit/utils/test_graph.py +70 -0
  786. celery_asyncio-6.0.0a1/t/unit/utils/test_imports.py +123 -0
  787. celery_asyncio-6.0.0a1/t/unit/utils/test_iso8601.py +76 -0
  788. celery_asyncio-6.0.0a1/t/unit/utils/test_local.py +355 -0
  789. celery_asyncio-6.0.0a1/t/unit/utils/test_nodenames.py +10 -0
  790. celery_asyncio-6.0.0a1/t/unit/utils/test_objects.py +9 -0
  791. celery_asyncio-6.0.0a1/t/unit/utils/test_pickle.py +47 -0
  792. celery_asyncio-6.0.0a1/t/unit/utils/test_platforms.py +1059 -0
  793. celery_asyncio-6.0.0a1/t/unit/utils/test_saferepr.py +212 -0
  794. celery_asyncio-6.0.0a1/t/unit/utils/test_serialization.py +116 -0
  795. celery_asyncio-6.0.0a1/t/unit/utils/test_sysinfo.py +35 -0
  796. celery_asyncio-6.0.0a1/t/unit/utils/test_term.py +87 -0
  797. celery_asyncio-6.0.0a1/t/unit/utils/test_text.py +81 -0
  798. celery_asyncio-6.0.0a1/t/unit/utils/test_threads.py +103 -0
  799. celery_asyncio-6.0.0a1/t/unit/utils/test_time.py +401 -0
  800. celery_asyncio-6.0.0a1/t/unit/utils/test_timer2.py +105 -0
  801. celery_asyncio-6.0.0a1/t/unit/utils/test_utils.py +24 -0
  802. celery_asyncio-6.0.0a1/t/unit/worker/__init__.py +0 -0
  803. celery_asyncio-6.0.0a1/t/unit/worker/test_autoscale.py +288 -0
  804. celery_asyncio-6.0.0a1/t/unit/worker/test_bootsteps.py +364 -0
  805. celery_asyncio-6.0.0a1/t/unit/worker/test_components.py +91 -0
  806. celery_asyncio-6.0.0a1/t/unit/worker/test_consumer.py +1293 -0
  807. celery_asyncio-6.0.0a1/t/unit/worker/test_control.py +817 -0
  808. celery_asyncio-6.0.0a1/t/unit/worker/test_heartbeat.py +93 -0
  809. celery_asyncio-6.0.0a1/t/unit/worker/test_loops.py +550 -0
  810. celery_asyncio-6.0.0a1/t/unit/worker/test_native_delayed_delivery.py +468 -0
  811. celery_asyncio-6.0.0a1/t/unit/worker/test_request.py +1403 -0
  812. celery_asyncio-6.0.0a1/t/unit/worker/test_revoke.py +10 -0
  813. celery_asyncio-6.0.0a1/t/unit/worker/test_state.py +222 -0
  814. celery_asyncio-6.0.0a1/t/unit/worker/test_strategy.py +358 -0
  815. celery_asyncio-6.0.0a1/t/unit/worker/test_worker.py +1244 -0
  816. celery_asyncio-6.0.0a1/tox.ini +134 -0
@@ -0,0 +1,37 @@
1
+ {
2
+ "includeCoAuthoredBy": false,
3
+ "permissions": {
4
+ "allow": [
5
+ "Bash(pip install:*)",
6
+ "Bash(python3:*)",
7
+ "Bash(.venv/bin/pip install:*)",
8
+ "Bash(.venv/bin/pytest t/unit/contrib/test_pytest.py -v)",
9
+ "Bash(.venv/bin/python:*)",
10
+ "Bash(.venv/bin/pytest t/unit/contrib/ -v --collect-only)",
11
+ "Bash(.venv/bin/pytest t/integration/test_countdown_fixture_reuse.py -v)",
12
+ "Bash(.venv/bin/pytest t/integration/test_countdown_fixture_reuse.py -v --tb=short)",
13
+ "Bash(.venv/bin/pytest t/integration/test_tasks.py::test_tasks::test_simple_call -v)",
14
+ "Bash(.venv/bin/pytest t/integration/test_countdown_fixture_reuse.py --fixtures)",
15
+ "Bash(.venv/bin/pytest t/unit/contrib/test_countdown_fixture_reuse.py -v --tb=short)",
16
+ "Bash(.venv/bin/pytest t/unit/contrib/test_countdown_fixture_reuse.py -v --collect-only)",
17
+ "Bash(.venv/bin/pytest t/unit/contrib/test_countdown_with_fixture.py -v --tb=short)",
18
+ "Bash(.venv/bin/pytest t/unit/contrib/test_countdown_with_fixture.py -v --tb=short -p no:pytest_celery)",
19
+ "Bash(redis-cli:*)",
20
+ "Bash(.venv/bin/pytest:*)",
21
+ "Bash(grep:*)",
22
+ "Bash(find:*)",
23
+ "Bash(git checkout:*)",
24
+ "Bash(git add:*)",
25
+ "Bash(git commit -m \"$\\(cat <<''EOF''\nAdd general interface for native delayed delivery\n\nThis adds a transport-agnostic interface for native delayed delivery,\nallowing any Kombu transport to implement delayed message delivery\nwithout being tied to RabbitMQ-specific infrastructure.\n\nChanges:\n- Add new config `broker_native_delayed_delivery_enabled` \\(default: False\\)\n- Add `x-celery-delay-seconds` message header for transports to read\n- Add utility module `celery/utils/native_delayed_delivery.py` with\n support detection and validation functions\n- Update DelayedDelivery bootstep to use new transport interface if\n available, falling back to legacy Kombu functions\n\nThe existing quorum queue auto-detection remains functional for backward\ncompatibility. The new interface is additive - both the delay header and\nexisting routing key transformation can run together.\n\nExpected Kombu transport interface:\n- `transport.supports_native_delayed_delivery` property\n- `transport.setup_native_delayed_delivery\\(connection, queues, **options\\)`\nEOF\n\\)\")",
26
+ "Bash(git push:*)",
27
+ "Bash(git commit:*)",
28
+ "Bash(git pull:*)",
29
+ "Bash(wc:*)",
30
+ "Bash(git -C /home/ohaas/e1+/celery log --oneline -1)",
31
+ "Bash(git branch:*)",
32
+ "Bash(uv build:*)"
33
+ ],
34
+ "deny": [],
35
+ "ask": []
36
+ }
37
+ }
@@ -0,0 +1,33 @@
1
+ .DS_Store
2
+ *.pyc
3
+ *$py.class
4
+ *~
5
+ .*.sw[pon]
6
+ dist/
7
+ *.egg-info
8
+ *.egg
9
+ *.egg/
10
+ *.eggs/
11
+ build/
12
+ .build/
13
+ _build/
14
+ pip-log.txt
15
+ .directory
16
+ erl_crash.dump
17
+ *.db
18
+ Documentation/
19
+ .tox/
20
+ .ropeproject/
21
+ .project
22
+ .pydevproject
23
+ .idea/
24
+ .coverage
25
+ celery/tests/cover/
26
+ .ve*
27
+ cover/
28
+ .vagrant/
29
+ .cache/
30
+ htmlcov/
31
+ coverage.xml
32
+ test.db
33
+ .git/
@@ -0,0 +1,15 @@
1
+ # http://editorconfig.org
2
+
3
+ root = true
4
+
5
+ [*]
6
+ indent_style = space
7
+ indent_size = 4
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+ charset = utf-8
11
+ end_of_line = lf
12
+ max_line_length = 117
13
+
14
+ [Makefile]
15
+ indent_style = tab
@@ -0,0 +1,8 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: celery
4
+ patreon:
5
+ open_collective: celery
6
+ ko_fi: # Replace with a single Ko-fi username
7
+ tidelift: "pypi/celery"
8
+ custom: # Replace with a single custom sponsorship URL
@@ -0,0 +1,166 @@
1
+ ---
2
+ name: Bug Report
3
+ about: Is something wrong with Celery?
4
+ title: ''
5
+ labels: 'Issue Type: Bug Report'
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ <!--
11
+ Please fill this template entirely and do not erase parts of it.
12
+ We reserve the right to close without a response
13
+ bug reports which are incomplete.
14
+ -->
15
+ # Checklist
16
+ <!--
17
+ To check an item on the list replace [ ] with [x].
18
+ -->
19
+ - [ ] I have verified that the issue exists against the `main` branch of Celery.
20
+ - [ ] This has already been asked to the [discussions forum](https://github.com/celery/celery/discussions) first.
21
+ - [ ] I have read the relevant section in the
22
+ [contribution guide](https://docs.celeryq.dev/en/main/contributing.html#other-bugs)
23
+ on reporting bugs.
24
+ - [ ] I have checked the [issues list](https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22)
25
+ for similar or identical bug reports.
26
+ - [ ] I have checked the [pull requests list](https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22)
27
+ for existing proposed fixes.
28
+ - [ ] I have checked the [commit log](https://github.com/celery/celery/commits/main)
29
+ to find out if the bug was already fixed in the main branch.
30
+ - [ ] I have included all related issues and possible duplicate issues
31
+ in this issue (If there are none, check this box anyway).
32
+ - [ ] I have tried to reproduce the issue with [pytest-celery](https://docs.celeryq.dev/projects/pytest-celery/en/latest/userguide/celery-bug-report.html) and added the reproduction script below.
33
+
34
+ ## Mandatory Debugging Information
35
+
36
+ - [ ] I have included the output of ``celery -A proj report`` in the issue.
37
+ (if you are not able to do this, then at least specify the Celery
38
+ version affected).
39
+ - [ ] I have verified that the issue exists against the `main` branch of Celery.
40
+ - [ ] I have included the contents of ``pip freeze`` in the issue.
41
+ - [ ] I have included all the versions of all the external dependencies required
42
+ to reproduce this bug.
43
+
44
+ ## Optional Debugging Information
45
+ <!--
46
+ Try some of the below if you think they are relevant.
47
+ It will help us figure out the scope of the bug and how many users it affects.
48
+ -->
49
+ - [ ] I have tried reproducing the issue on more than one Python version
50
+ and/or implementation.
51
+ - [ ] I have tried reproducing the issue on more than one message broker and/or
52
+ result backend.
53
+ - [ ] I have tried reproducing the issue on more than one version of the message
54
+ broker and/or result backend.
55
+ - [ ] I have tried reproducing the issue on more than one operating system.
56
+ - [ ] I have tried reproducing the issue on more than one workers pool.
57
+ - [ ] I have tried reproducing the issue with autoscaling, retries,
58
+ ETA/Countdown & rate limits disabled.
59
+ - [ ] I have tried reproducing the issue after downgrading
60
+ and/or upgrading Celery and its dependencies.
61
+
62
+ ## Related Issues and Possible Duplicates
63
+ <!--
64
+ Please make sure to search and mention any related issues
65
+ or possible duplicates to this issue as requested by the checklist above.
66
+
67
+ This may or may not include issues in other repositories that the Celery project
68
+ maintains or other repositories that are dependencies of Celery.
69
+
70
+ If you don't know how to mention issues, please refer to Github's documentation
71
+ on the subject: https://help.github.com/en/articles/autolinked-references-and-urls#issues-and-pull-requests
72
+ -->
73
+
74
+ #### Related Issues
75
+
76
+ - None
77
+
78
+ #### Possible Duplicates
79
+
80
+ - None
81
+
82
+ ## Environment & Settings
83
+ <!-- Include the contents of celery --version below -->
84
+ **Celery version**:
85
+ <!-- Include the output of celery -A proj report below -->
86
+ <details>
87
+ <summary><b><code>celery report</code> Output:</b></summary>
88
+ <p>
89
+
90
+ ```
91
+ ```
92
+
93
+ </p>
94
+ </details>
95
+
96
+ # Steps to Reproduce
97
+
98
+ ## Required Dependencies
99
+ <!-- Please fill the required dependencies to reproduce this issue -->
100
+ - **Minimal Python Version**: N/A or Unknown
101
+ - **Minimal Celery Version**: N/A or Unknown
102
+ - **Minimal Kombu Version**: N/A or Unknown
103
+ - **Minimal Broker Version**: N/A or Unknown
104
+ - **Minimal Result Backend Version**: N/A or Unknown
105
+ - **Minimal OS and/or Kernel Version**: N/A or Unknown
106
+ - **Minimal Broker Client Version**: N/A or Unknown
107
+ - **Minimal Result Backend Client Version**: N/A or Unknown
108
+
109
+ ### Python Packages
110
+ <!-- Please fill the contents of pip freeze below -->
111
+ <details>
112
+ <summary><b><code>pip freeze</code> Output:</b></summary>
113
+ <p>
114
+
115
+ ```
116
+ ```
117
+
118
+ </p>
119
+ </details>
120
+
121
+ ### Other Dependencies
122
+ <!--
123
+ Please provide system dependencies, configuration files
124
+ and other dependency information if applicable
125
+ -->
126
+ <details>
127
+ <p>
128
+ N/A
129
+ </p>
130
+ </details>
131
+
132
+ ## Minimally Reproducible Test Case
133
+ <!--
134
+ Please provide a reproducible test case.
135
+ Refer to the Reporting Bugs section in our contribution guide.
136
+
137
+ We prefer submitting test cases in the form of a PR to our integration test suite.
138
+ If you can provide one, please mention the PR number below.
139
+ If not, please attach the most minimal code example required to reproduce the issue below.
140
+ If the test case is too large, please include a link to a gist or a repository below.
141
+
142
+ Alternatively, the pytest-celery plugin can be used to create standalone reproduction scripts
143
+ that can be added to this report. See the pytest-celery documentation for more information at
144
+ pytest-celery.readthedocs.io
145
+ -->
146
+
147
+ <details>
148
+ <p>
149
+
150
+ ```python
151
+ ```
152
+
153
+ </p>
154
+ </details>
155
+
156
+ # Expected Behavior
157
+ <!-- Describe in detail what you expect to happen -->
158
+
159
+ # Actual Behavior
160
+ <!--
161
+ Describe in detail what actually happened.
162
+ Please include a backtrace and surround it with triple backticks (```).
163
+ In addition, include the Celery daemon logs, the broker logs,
164
+ the result backend logs and system logs below if they will help us debug
165
+ the issue.
166
+ -->
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: Documentation Bug Report
3
+ about: Is something wrong with our documentation?
4
+ title: ''
5
+ labels: 'Category: Documentation, Issue Type: Bug Report'
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ <!--
11
+ Please fill this template entirely and do not erase parts of it.
12
+ We reserve the right to close without a response
13
+ bug reports which are incomplete.
14
+ -->
15
+ # Checklist
16
+ <!--
17
+ To check an item on the list replace [ ] with [x].
18
+ -->
19
+
20
+ - [ ] I have checked the [issues list](https://github.com/celery/celery/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22Category%3A+Documentation%22+)
21
+ for similar or identical bug reports.
22
+ - [ ] I have checked the [pull requests list](https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Category%3A+Documentation%22)
23
+ for existing proposed fixes.
24
+ - [ ] I have checked the [commit log](https://github.com/celery/celery/commits/main)
25
+ to find out if the bug was already fixed in the main branch.
26
+ - [ ] I have included all related issues and possible duplicate issues in this issue
27
+ (If there are none, check this box anyway).
28
+
29
+ ## Related Issues and Possible Duplicates
30
+ <!--
31
+ Please make sure to search and mention any related issues
32
+ or possible duplicates to this issue as requested by the checklist above.
33
+
34
+ This may or may not include issues in other repositories that the Celery project
35
+ maintains or other repositories that are dependencies of Celery.
36
+
37
+ If you don't know how to mention issues, please refer to Github's documentation
38
+ on the subject: https://help.github.com/en/articles/autolinked-references-and-urls#issues-and-pull-requests
39
+ -->
40
+
41
+ #### Related Issues
42
+
43
+ - None
44
+
45
+ #### Possible Duplicates
46
+
47
+ - None
48
+
49
+ # Description
50
+ <!--
51
+ Please describe what's missing or incorrect about our documentation.
52
+ Include links and/or screenshots which will aid us to resolve the issue.
53
+ -->
54
+
55
+ # Suggestions
56
+ <!-- Please provide us suggestions for how to fix the documentation -->
@@ -0,0 +1,94 @@
1
+ ---
2
+ name: Enhancement
3
+ about: Do you want to improve an existing feature?
4
+ title: ''
5
+ labels: 'Issue Type: Enhancement'
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ <!--
11
+ Please fill this template entirely and do not erase parts of it.
12
+ We reserve the right to close without a response
13
+ enhancement requests which are incomplete.
14
+ -->
15
+ # Checklist
16
+ <!--
17
+ To check an item on the list replace [ ] with [x].
18
+ -->
19
+
20
+ - [ ] I have checked the [issues list](https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22)
21
+ for similar or identical enhancement to an existing feature.
22
+ - [ ] I have checked the [pull requests list](https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22)
23
+ for existing proposed enhancements.
24
+ - [ ] I have checked the [commit log](https://github.com/celery/celery/commits/main)
25
+ to find out if the same enhancement was already implemented in the
26
+ main branch.
27
+ - [ ] I have included all related issues and possible duplicate issues in this issue
28
+ (If there are none, check this box anyway).
29
+
30
+ ## Related Issues and Possible Duplicates
31
+ <!--
32
+ Please make sure to search and mention any related issues
33
+ or possible duplicates to this issue as requested by the checklist above.
34
+
35
+ This may or may not include issues in other repositories that the Celery project
36
+ maintains or other repositories that are dependencies of Celery.
37
+
38
+ If you don't know how to mention issues, please refer to Github's documentation
39
+ on the subject: https://help.github.com/en/articles/autolinked-references-and-urls#issues-and-pull-requests
40
+ -->
41
+
42
+ #### Related Issues
43
+
44
+ - None
45
+
46
+ #### Possible Duplicates
47
+
48
+ - None
49
+
50
+ # Brief Summary
51
+ <!--
52
+ Please include a brief summary of what the enhancement is
53
+ and why it is needed.
54
+ -->
55
+
56
+ # Design
57
+
58
+ ## Architectural Considerations
59
+ <!--
60
+ If more components other than Celery are involved,
61
+ describe them here and the effect it would have on Celery.
62
+ -->
63
+ None
64
+
65
+ ## Proposed Behavior
66
+ <!--
67
+ Please describe in detail how this enhancement is going to change the behavior
68
+ of an existing feature.
69
+ Describe what happens in case of failures as well if applicable.
70
+ -->
71
+
72
+ ## Proposed UI/UX
73
+ <!--
74
+ Please provide your ideas for the API, CLI options,
75
+ configuration key names etc. that will be adjusted for this enhancement.
76
+ -->
77
+
78
+ ## Diagrams
79
+ <!--
80
+ Please include any diagrams that might be relevant
81
+ to the implementation of this enhancement such as:
82
+ * Class Diagrams
83
+ * Sequence Diagrams
84
+ * Activity Diagrams
85
+ You can drag and drop images into the text box to attach them to this issue.
86
+ -->
87
+ N/A
88
+
89
+ ## Alternatives
90
+ <!--
91
+ If you have considered any alternative implementations
92
+ describe them in detail below.
93
+ -->
94
+ None
@@ -0,0 +1,93 @@
1
+ ---
2
+ name: Feature Request
3
+ about: Do you need a new feature?
4
+ title: ''
5
+ labels: 'Issue Type: Feature Request'
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ <!--
11
+ Please fill this template entirely and do not erase parts of it.
12
+ We reserve the right to close without a response
13
+ feature requests which are incomplete.
14
+ -->
15
+ # Checklist
16
+ <!--
17
+ To check an item on the list replace [ ] with [x].
18
+ -->
19
+
20
+ - [ ] I have checked the [issues list](https://github.com/celery/celery/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22Issue+Type%3A+Feature+Request%22+)
21
+ for similar or identical feature requests.
22
+ - [ ] I have checked the [pull requests list](https://github.com/celery/celery/pulls?utf8=%E2%9C%93&q=is%3Apr+label%3A%22PR+Type%3A+Feature%22+)
23
+ for existing proposed implementations of this feature.
24
+ - [ ] I have checked the [commit log](https://github.com/celery/celery/commits/main)
25
+ to find out if the same feature was already implemented in the
26
+ main branch.
27
+ - [ ] I have included all related issues and possible duplicate issues
28
+ in this issue (If there are none, check this box anyway).
29
+
30
+ ## Related Issues and Possible Duplicates
31
+ <!--
32
+ Please make sure to search and mention any related issues
33
+ or possible duplicates to this issue as requested by the checklist above.
34
+
35
+ This may or may not include issues in other repositories that the Celery project
36
+ maintains or other repositories that are dependencies of Celery.
37
+
38
+ If you don't know how to mention issues, please refer to Github's documentation
39
+ on the subject: https://help.github.com/en/articles/autolinked-references-and-urls#issues-and-pull-requests
40
+ -->
41
+
42
+ #### Related Issues
43
+
44
+ - None
45
+
46
+ #### Possible Duplicates
47
+
48
+ - None
49
+
50
+ # Brief Summary
51
+ <!--
52
+ Please include a brief summary of what the feature does
53
+ and why it is needed.
54
+ -->
55
+
56
+ # Design
57
+
58
+ ## Architectural Considerations
59
+ <!--
60
+ If more components other than Celery are involved,
61
+ describe them here and the effect it would have on Celery.
62
+ -->
63
+ None
64
+
65
+ ## Proposed Behavior
66
+ <!--
67
+ Please describe in detail how this feature is going to behave.
68
+ Describe what happens in case of failures as well if applicable.
69
+ -->
70
+
71
+ ## Proposed UI/UX
72
+ <!--
73
+ Please provide your ideas for the API, CLI options,
74
+ configuration key names etc. that will be introduced for this feature.
75
+ -->
76
+
77
+ ## Diagrams
78
+ <!--
79
+ Please include any diagrams that might be relevant
80
+ to the implementation of this feature such as:
81
+ * Class Diagrams
82
+ * Sequence Diagrams
83
+ * Activity Diagrams
84
+ You can drag and drop images into the text box to attach them to this issue.
85
+ -->
86
+ N/A
87
+
88
+ ## Alternatives
89
+ <!--
90
+ If you have considered any alternative implementations
91
+ describe them in detail below.
92
+ -->
93
+ None
@@ -0,0 +1,48 @@
1
+ ---
2
+ name: Major Version Release Checklist
3
+ about: About to release a new major version? (Maintainers Only!)
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ Version: <!-- Insert Version Here -->
11
+ Release PR: <!-- Insert Release PR Here -->
12
+
13
+ # Description
14
+
15
+ <!-- Briefly describe the contents of the version -->
16
+
17
+ # Checklist
18
+
19
+ - [ ] Release PR drafted
20
+ - [ ] Milestone is 100% done
21
+ - [ ] Merge Freeze
22
+ - [ ] Release PR reviewed
23
+ - [ ] The main branch build passes
24
+
25
+ [![Build Status](https://github.com/celery/celery/actions/workflows/python-package.yml/badge.svg)](https://github.com/celery/celery/actions/workflows/python-package.yml)
26
+ - [ ] Release Notes
27
+ - [ ] What's New
28
+
29
+ # Process
30
+
31
+ # Alphas
32
+
33
+ <!-- Add more as needed -->
34
+ - [ ] Alpha 1
35
+
36
+ ## Betas
37
+
38
+ <!-- Add more as needed -->
39
+ - [ ] Beta 1
40
+
41
+ ## Release Candidates
42
+
43
+ <!-- Add more as needed -->
44
+ - [ ] RC 1
45
+
46
+ # Release Blockers
47
+
48
+ # Potential Release Blockers