taskcluster-taskgraph 10.0.2__tar.gz → 11.0.0__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 (141) hide show
  1. {taskcluster-taskgraph-10.0.2/src/taskcluster_taskgraph.egg-info → taskcluster-taskgraph-11.0.0}/PKG-INFO +1 -1
  2. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/pyproject.toml +4 -6
  3. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/requirements/base.txt +29 -30
  4. taskcluster-taskgraph-11.0.0/requirements/dev.txt +624 -0
  5. taskcluster-taskgraph-11.0.0/requirements/test.txt +593 -0
  6. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0/src/taskcluster_taskgraph.egg-info}/PKG-INFO +1 -1
  7. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/__init__.py +1 -1
  8. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/actions/add_new_jobs.py +0 -1
  9. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/actions/cancel.py +1 -2
  10. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/actions/cancel_all.py +1 -2
  11. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/actions/rebuild_cached_tasks.py +2 -1
  12. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/actions/registry.py +19 -18
  13. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/actions/retrigger.py +1 -4
  14. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/actions/util.py +4 -3
  15. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/generator.py +11 -6
  16. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/main.py +6 -4
  17. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/morph.py +0 -1
  18. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/optimize/base.py +5 -3
  19. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/optimize/strategies.py +0 -1
  20. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/parameters.py +2 -2
  21. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/run-task/robustcheckout.py +11 -8
  22. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/taskgraph.py +2 -2
  23. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/code_review.py +0 -1
  24. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/docker_image.py +0 -2
  25. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/from_deps.py +4 -3
  26. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/notify.py +1 -0
  27. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/run/__init__.py +0 -1
  28. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/run/common.py +0 -1
  29. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/run/index_search.py +0 -1
  30. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/run/run_task.py +0 -3
  31. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/task.py +5 -5
  32. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/task_context.py +3 -0
  33. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/path.py +0 -1
  34. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/taskcluster.py +16 -2
  35. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/taskgraph.py +0 -1
  36. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/vcs.py +48 -21
  37. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_actions_registry.py +44 -0
  38. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_optimize.py +2 -2
  39. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transform_task_context.py +2 -2
  40. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_taskcluster.py +55 -0
  41. taskcluster-taskgraph-10.0.2/requirements/dev.txt +0 -36
  42. taskcluster-taskgraph-10.0.2/requirements/test.txt +0 -156
  43. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/LICENSE +0 -0
  44. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/MANIFEST.in +0 -0
  45. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/README.rst +0 -0
  46. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/requirements/base.in +0 -0
  47. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/requirements/dev.in +0 -0
  48. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/requirements/test.in +0 -0
  49. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/setup.cfg +0 -0
  50. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/setup.py +0 -0
  51. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskcluster_taskgraph.egg-info/SOURCES.txt +0 -0
  52. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskcluster_taskgraph.egg-info/dependency_links.txt +0 -0
  53. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskcluster_taskgraph.egg-info/entry_points.txt +0 -0
  54. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskcluster_taskgraph.egg-info/requires.txt +0 -0
  55. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskcluster_taskgraph.egg-info/top_level.txt +0 -0
  56. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/actions/__init__.py +0 -0
  57. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/config.py +0 -0
  58. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/create.py +0 -0
  59. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/decision.py +0 -0
  60. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/docker.py +0 -0
  61. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/filter_tasks.py +0 -0
  62. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/graph.py +0 -0
  63. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/loader/__init__.py +0 -0
  64. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/loader/default.py +0 -0
  65. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/loader/transform.py +0 -0
  66. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/optimize/__init__.py +0 -0
  67. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/run-task/fetch-content +0 -0
  68. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/run-task/hgrc +0 -0
  69. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/run-task/run-task +0 -0
  70. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/target_tasks.py +0 -0
  71. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/task.py +0 -0
  72. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/__init__.py +0 -0
  73. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/base.py +0 -0
  74. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/cached_tasks.py +0 -0
  75. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/chunking.py +0 -0
  76. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/fetch.py +0 -0
  77. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/transforms/run/toolchain.py +0 -0
  78. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/__init__.py +0 -0
  79. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/archive.py +0 -0
  80. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/attributes.py +0 -0
  81. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/cached_tasks.py +0 -0
  82. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/copy.py +0 -0
  83. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/dependencies.py +0 -0
  84. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/docker.py +0 -0
  85. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/hash.py +0 -0
  86. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/keyed_by.py +0 -0
  87. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/parameterization.py +0 -0
  88. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/python_path.py +0 -0
  89. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/readonlydict.py +0 -0
  90. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/schema.py +0 -0
  91. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/set_name.py +0 -0
  92. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/shell.py +0 -0
  93. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/templates.py +0 -0
  94. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/time.py +0 -0
  95. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/treeherder.py +0 -0
  96. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/verify.py +0 -0
  97. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/workertypes.py +0 -0
  98. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/src/taskgraph/util/yaml.py +0 -0
  99. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_actions_rebuild_cached_tasks.py +0 -0
  100. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_create.py +0 -0
  101. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_decision.py +0 -0
  102. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_docker.py +0 -0
  103. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_generator.py +0 -0
  104. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_graph.py +0 -0
  105. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_main.py +0 -0
  106. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_morph.py +0 -0
  107. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_optimize_strategies.py +0 -0
  108. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_parameters.py +0 -0
  109. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_scripts_fetch_content.py +0 -0
  110. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_scripts_run_task.py +0 -0
  111. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_target_tasks.py +0 -0
  112. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_taskgraph.py +0 -0
  113. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transform_chunking.py +0 -0
  114. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transform_docker_image.py +0 -0
  115. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transforms_base.py +0 -0
  116. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transforms_cached_tasks.py +0 -0
  117. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transforms_fetch.py +0 -0
  118. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transforms_from_deps.py +0 -0
  119. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transforms_notify.py +0 -0
  120. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transforms_run.py +0 -0
  121. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transforms_run_run_task.py +0 -0
  122. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transforms_run_toolchain.py +0 -0
  123. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_transforms_task.py +0 -0
  124. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_archive.py +0 -0
  125. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_attributes.py +0 -0
  126. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_cached_tasks.py +0 -0
  127. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_copy.py +0 -0
  128. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_dependencies.py +0 -0
  129. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_docker.py +0 -0
  130. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_parameterization.py +0 -0
  131. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_path.py +0 -0
  132. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_python_path.py +0 -0
  133. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_readonlydict.py +0 -0
  134. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_schema.py +0 -0
  135. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_templates.py +0 -0
  136. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_time.py +0 -0
  137. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_treeherder.py +0 -0
  138. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_vcs.py +0 -0
  139. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_verify.py +0 -0
  140. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_workertypes.py +0 -0
  141. {taskcluster-taskgraph-10.0.2 → taskcluster-taskgraph-11.0.0}/test/test_util_yaml.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: taskcluster-taskgraph
3
- Version: 10.0.2
3
+ Version: 11.0.0
4
4
  Summary: Build taskcluster taskgraphs
5
5
  Home-page: https://github.com/taskcluster/taskgraph
6
6
  Classifier: Development Status :: 5 - Production/Stable
@@ -1,9 +1,3 @@
1
- [tool.black]
2
- line-length = 88
3
- extend-exclude = """(\
4
- taskcluster/scripts/external_tools)\
5
- """
6
-
7
1
  [tool.pytest.ini_options]
8
2
  xfail_strict = true
9
3
 
@@ -12,6 +6,10 @@ branch = true
12
6
  source = ["src/taskgraph/", "src/taskgraph/run-task/", "test"]
13
7
 
14
8
  [tool.ruff]
9
+ extend-exclude = [
10
+ "taskcluster/scripts/external_tools"
11
+ ]
12
+ line-length = 88
15
13
  target-version = "py38"
16
14
 
17
15
  [tool.ruff.lint]
@@ -1,14 +1,9 @@
1
- # SHA1:888b49d69a77ce225926210e553eaf7b6bc7e575
2
- #
3
- # This file is autogenerated by pip-compile-multi
4
- # To update, run:
5
- #
6
- # pip-compile-multi
7
- #
1
+ # This file was autogenerated by uv via the following command:
2
+ # uv pip compile base.in --python-version 3.8 --universal --generate-hashes --output-file base.txt
8
3
  appdirs==1.4.4 \
9
4
  --hash=sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41 \
10
5
  --hash=sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128
11
- # via -r requirements/base.in
6
+ # via -r base.in
12
7
  arrow==1.3.0 \
13
8
  --hash=sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80 \
14
9
  --hash=sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85
@@ -17,9 +12,9 @@ binaryornot==0.4.4 \
17
12
  --hash=sha256:359501dfc9d40632edc9fac890e19542db1a287bbcfa58175b66658392018061 \
18
13
  --hash=sha256:b8b71173c917bddcd2c16070412e369c3ed7f0528926f70cac18a6c97fd563e4
19
14
  # via cookiecutter
20
- certifi==2024.6.2 \
21
- --hash=sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516 \
22
- --hash=sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56
15
+ certifi==2024.7.4 \
16
+ --hash=sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b \
17
+ --hash=sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90
23
18
  # via requests
24
19
  chardet==5.2.0 \
25
20
  --hash=sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7 \
@@ -121,10 +116,14 @@ click==8.1.7 \
121
116
  --hash=sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28 \
122
117
  --hash=sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de
123
118
  # via cookiecutter
119
+ colorama==0.4.6 ; platform_system == 'Windows' \
120
+ --hash=sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44 \
121
+ --hash=sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6
122
+ # via click
124
123
  cookiecutter==2.6.0 \
125
124
  --hash=sha256:a54a8e37995e4ed963b3e82831072d1ad4b005af736bb17b99c2cbd9d41b6e2d \
126
125
  --hash=sha256:db21f8169ea4f4fdc2408d48ca44859349de2647fbe494a9d6c3edfc0542c21c
127
- # via -r requirements/base.in
126
+ # via -r base.in
128
127
  giturlparse==0.12.0 \
129
128
  --hash=sha256:412b74f2855f1da2fefa89fd8dde62df48476077a72fc19b62039554d27360eb \
130
129
  --hash=sha256:c0fff7c21acc435491b1779566e038757a205c1ffdcb47e4f81ea52ad8c3859a
@@ -137,10 +136,10 @@ jinja2==3.1.4 \
137
136
  --hash=sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369 \
138
137
  --hash=sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d
139
138
  # via cookiecutter
140
- json-e==4.7.0 \
141
- --hash=sha256:c12b00552111ab2c43e1a87111a7113a73aee903709df96d7a778f45dc0a7ea8 \
142
- --hash=sha256:e5df7be84bf80d4e9bb8217580b50602f59fa7df6af0ba5c5473a7388afb85ae
143
- # via -r requirements/base.in
139
+ json-e==4.7.1 \
140
+ --hash=sha256:27f6856dc2e1774eb26c83d76efe1fb20b69b62b830c7cf71faea70311855fe4 \
141
+ --hash=sha256:5733fbfca8e982cddf4114bcc70926d8bbf9d336cf98d69633e2db1e65ff75c4
142
+ # via -r base.in
144
143
  markdown-it-py==3.0.0 \
145
144
  --hash=sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1 \
146
145
  --hash=sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb
@@ -214,7 +213,7 @@ mdurl==0.1.2 \
214
213
  mozilla-repo-urls==0.1.1 \
215
214
  --hash=sha256:30510d3519479aa70211145d0ac9cf6e2fadcb8d30fa3b196bb957bd773502ba \
216
215
  --hash=sha256:7364da790751db2a060eb45adbf1d7db89a145ed279ba235f3425db9dd255915
217
- # via -r requirements/base.in
216
+ # via -r base.in
218
217
  pygments==2.18.0 \
219
218
  --hash=sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199 \
220
219
  --hash=sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a
@@ -280,17 +279,17 @@ pyyaml==6.0.1 \
280
279
  --hash=sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d \
281
280
  --hash=sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f
282
281
  # via
283
- # -r requirements/base.in
282
+ # -r base.in
284
283
  # cookiecutter
285
- redo==2.0.4 \
286
- --hash=sha256:81066955041c853b0e6491eb65a0877dce45131c4cfa3d42d923fc2aa8f7a043 \
287
- --hash=sha256:c76e4c23ab2f8840261736a851323cd98493710e7a9d36a1058535dca501f293
288
- # via -r requirements/base.in
284
+ redo==3.0.0 \
285
+ --hash=sha256:52a14200004d6708924a547b31b7d1c717cb36b944f3a5c7b176e0d61ab81eef \
286
+ --hash=sha256:66905396b2882577fa4bf7edb90fee081db2b98992d303f12e3f898ac7f7bd56
287
+ # via -r base.in
289
288
  requests==2.32.3 \
290
289
  --hash=sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760 \
291
290
  --hash=sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6
292
291
  # via
293
- # -r requirements/base.in
292
+ # -r base.in
294
293
  # cookiecutter
295
294
  rich==13.7.1 \
296
295
  --hash=sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222 \
@@ -303,12 +302,12 @@ six==1.16.0 \
303
302
  slugid==2.0.0 \
304
303
  --hash=sha256:a950d98b72691178bdd4d6c52743c4a2aa039207cf7a97d71060a111ff9ba297 \
305
304
  --hash=sha256:aec8b0e01c4ad32e38e12d609eab3ec912fd129aaf6b2ded0199b56a5f8fd67c
306
- # via -r requirements/base.in
305
+ # via -r base.in
307
306
  taskcluster-urls==13.0.1 \
308
307
  --hash=sha256:5e25e7e6818e8877178b175ff43d2e6548afad72694aa125f404a7329ece0973 \
309
308
  --hash=sha256:b25e122ecec249c4299ac7b20b08db76e3e2025bdaeb699a9d444556de5fd367 \
310
309
  --hash=sha256:f66dcbd6572a6216ab65949f0fa0b91f2df647918028436c384e6af5cd12ae2b
311
- # via -r requirements/base.in
310
+ # via -r base.in
312
311
  text-unidecode==1.3 \
313
312
  --hash=sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8 \
314
313
  --hash=sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93
@@ -317,15 +316,15 @@ types-python-dateutil==2.9.0.20240316 \
317
316
  --hash=sha256:5d2f2e240b86905e40944dd787db6da9263f0deabef1076ddaed797351ec0202 \
318
317
  --hash=sha256:6b8cb66d960771ce5ff974e9dd45e38facb81718cc1e208b10b1baccbfdbee3b
319
318
  # via arrow
320
- typing-extensions==4.12.2 \
319
+ typing-extensions==4.12.2 ; python_version < '3.9' \
321
320
  --hash=sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d \
322
321
  --hash=sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8
323
322
  # via rich
324
- urllib3==2.2.1 \
325
- --hash=sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d \
326
- --hash=sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19
323
+ urllib3==2.2.2 \
324
+ --hash=sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472 \
325
+ --hash=sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168
327
326
  # via requests
328
327
  voluptuous==0.14.2 \
329
328
  --hash=sha256:533e36175967a310f1b73170d091232bf881403e4ebe52a9b4ade8404d151f5d \
330
329
  --hash=sha256:efc1dadc9ae32a30cc622602c1400a17b7bf8ee2770d64f70418144860739c3b
331
- # via -r requirements/base.in
330
+ # via -r base.in