taskcluster-taskgraph 4.1.1__tar.gz → 4.3.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 (133) hide show
  1. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/MANIFEST.in +0 -1
  2. {taskcluster-taskgraph-4.1.1/src/taskcluster_taskgraph.egg-info → taskcluster-taskgraph-4.3.0}/PKG-INFO +2 -6
  3. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/pyproject.toml +5 -0
  4. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/requirements/base.in +1 -0
  5. taskcluster-taskgraph-4.3.0/requirements/base.txt +299 -0
  6. taskcluster-taskgraph-4.3.0/requirements/dev.in +2 -0
  7. taskcluster-taskgraph-4.3.0/requirements/dev.txt +28 -0
  8. taskcluster-taskgraph-4.3.0/requirements/test.in +7 -0
  9. taskcluster-taskgraph-4.3.0/requirements/test.txt +171 -0
  10. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/setup.py +7 -4
  11. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0/src/taskcluster_taskgraph.egg-info}/PKG-INFO +2 -6
  12. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskcluster_taskgraph.egg-info/SOURCES.txt +1 -1
  13. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskcluster_taskgraph.egg-info/entry_points.txt +0 -1
  14. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskcluster_taskgraph.egg-info/requires.txt +1 -0
  15. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/__init__.py +1 -0
  16. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/actions/registry.py +0 -1
  17. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/decision.py +3 -1
  18. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/docker.py +0 -1
  19. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/generator.py +0 -1
  20. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/main.py +76 -0
  21. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/optimize/strategies.py +0 -1
  22. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/run-task/fetch-content +3 -3
  23. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/job/run_task.py +38 -9
  24. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/job/toolchain.py +3 -2
  25. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/docker.py +0 -1
  26. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/vcs.py +4 -4
  27. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/workertypes.py +6 -2
  28. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/yaml.py +3 -0
  29. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_decision.py +57 -0
  30. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_graph.py +0 -1
  31. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_main.py +72 -7
  32. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_parameters.py +1 -5
  33. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_scripts_run_task.py +0 -1
  34. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_taskgraph.py +0 -1
  35. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_transforms_job.py +4 -2
  36. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_transforms_job_run_task.py +7 -1
  37. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_transforms_job_toolchain.py +9 -0
  38. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_parameterization.py +9 -7
  39. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_taskcluster.py +2 -3
  40. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_vcs.py +4 -129
  41. taskcluster-taskgraph-4.3.0/test/test_util_workertypes.py +34 -0
  42. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_yaml.py +22 -1
  43. taskcluster-taskgraph-4.1.1/requirements/base.txt +0 -112
  44. taskcluster-taskgraph-4.1.1/requirements/dev.in +0 -4
  45. taskcluster-taskgraph-4.1.1/requirements/dev.txt +0 -110
  46. taskcluster-taskgraph-4.1.1/requirements/test.in +0 -16
  47. taskcluster-taskgraph-4.1.1/requirements/test.txt +0 -375
  48. taskcluster-taskgraph-4.1.1/version.txt +0 -1
  49. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/LICENSE +0 -0
  50. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/README.rst +0 -0
  51. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/setup.cfg +0 -0
  52. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskcluster_taskgraph.egg-info/dependency_links.txt +0 -0
  53. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskcluster_taskgraph.egg-info/top_level.txt +0 -0
  54. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/actions/__init__.py +0 -0
  55. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/actions/add_new_jobs.py +0 -0
  56. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/actions/cancel.py +0 -0
  57. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/actions/cancel_all.py +0 -0
  58. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/actions/rebuild_cached_tasks.py +0 -0
  59. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/actions/retrigger.py +0 -0
  60. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/actions/util.py +0 -0
  61. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/config.py +0 -0
  62. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/create.py +0 -0
  63. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/files_changed.py +0 -0
  64. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/filter_tasks.py +0 -0
  65. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/graph.py +0 -0
  66. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/loader/__init__.py +0 -0
  67. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/loader/transform.py +0 -0
  68. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/morph.py +0 -0
  69. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/optimize/__init__.py +0 -0
  70. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/optimize/base.py +0 -0
  71. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/parameters.py +0 -0
  72. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/run-task/hgrc +0 -0
  73. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/run-task/robustcheckout.py +0 -0
  74. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/run-task/run-task +0 -0
  75. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/target_tasks.py +0 -0
  76. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/task.py +0 -0
  77. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/taskgraph.py +0 -0
  78. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/__init__.py +0 -0
  79. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/base.py +0 -0
  80. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/cached_tasks.py +0 -0
  81. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/code_review.py +0 -0
  82. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/docker_image.py +0 -0
  83. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/fetch.py +0 -0
  84. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/job/__init__.py +0 -0
  85. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/job/common.py +0 -0
  86. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/job/index_search.py +0 -0
  87. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/notify.py +0 -0
  88. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/transforms/task.py +0 -0
  89. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/__init__.py +0 -0
  90. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/archive.py +0 -0
  91. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/attributes.py +0 -0
  92. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/cached_tasks.py +0 -0
  93. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/decision.py +0 -0
  94. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/hash.py +0 -0
  95. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/keyed_by.py +0 -0
  96. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/memoize.py +0 -0
  97. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/parameterization.py +0 -0
  98. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/path.py +0 -0
  99. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/python_path.py +0 -0
  100. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/readonlydict.py +0 -0
  101. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/schema.py +0 -0
  102. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/shell.py +0 -0
  103. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/taskcluster.py +0 -0
  104. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/taskgraph.py +0 -0
  105. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/templates.py +0 -0
  106. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/time.py +0 -0
  107. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/treeherder.py +0 -0
  108. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/src/taskgraph/util/verify.py +0 -0
  109. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_actions_rebuild_cached_tasks.py +0 -0
  110. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_actions_registry.py +0 -0
  111. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_create.py +0 -0
  112. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_files_changed.py +0 -0
  113. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_generator.py +0 -0
  114. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_morph.py +0 -0
  115. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_optimize.py +0 -0
  116. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_optimize_strategies.py +0 -0
  117. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_scripts_fetch_content.py +0 -0
  118. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_target_tasks.py +0 -0
  119. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_transforms_base.py +0 -0
  120. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_transforms_fetch.py +0 -0
  121. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_transforms_notify.py +0 -0
  122. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_transforms_task.py +0 -0
  123. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_attributes.py +0 -0
  124. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_docker.py +0 -0
  125. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_memoize.py +0 -0
  126. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_path.py +0 -0
  127. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_python_path.py +0 -0
  128. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_readonlydict.py +0 -0
  129. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_schema.py +0 -0
  130. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_templates.py +0 -0
  131. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_time.py +0 -0
  132. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_treeherder.py +0 -0
  133. {taskcluster-taskgraph-4.1.1 → taskcluster-taskgraph-4.3.0}/test/test_util_verify.py +0 -0
@@ -4,4 +4,3 @@ include requirements/test.in
4
4
  include requirements/test.txt
5
5
  include requirements/dev.in
6
6
  include requirements/dev.txt
7
- include version.txt
@@ -1,10 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: taskcluster-taskgraph
3
- Version: 4.1.1
3
+ Version: 4.3.0
4
4
  Summary: Build taskcluster taskgraphs
5
5
  Home-page: https://github.com/taskcluster/taskgraph
6
- License: UNKNOWN
7
- Platform: UNKNOWN
8
6
  Classifier: Development Status :: 5 - Production/Stable
9
7
  Classifier: Environment :: Console
10
8
  Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
@@ -13,9 +11,7 @@ Classifier: Programming Language :: Python :: 3.7
13
11
  Classifier: Programming Language :: Python :: 3.8
14
12
  Classifier: Programming Language :: Python :: 3.9
15
13
  Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
16
15
  Classifier: Topic :: Software Development
17
16
  Provides-Extra: load-image
18
17
  License-File: LICENSE
19
-
20
- UNKNOWN
21
-
@@ -9,3 +9,8 @@ xfail_strict = true
9
9
 
10
10
  [tool.isort]
11
11
  profile = "black"
12
+
13
+ [tool.coverage.run]
14
+ parallel = true
15
+ branch = true
16
+ source = ["src/taskgraph/", "taskgraph", "src/taskgraph/run-task/"]
@@ -1,5 +1,6 @@
1
1
  appdirs>=1.4
2
2
  attrs>=19.1.0
3
+ cookiecutter~=2.1
3
4
  json-e>=2.7
4
5
  mozilla-repo-urls
5
6
  PyYAML>=5.4
@@ -0,0 +1,299 @@
1
+ # SHA1:a199a11be56ce347d10dd1fce8de55752b42b141
2
+ #
3
+ # This file is autogenerated by pip-compile-multi
4
+ # To update, run:
5
+ #
6
+ # pip-compile-multi
7
+ #
8
+ appdirs==1.4.4 \
9
+ --hash=sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41 \
10
+ --hash=sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128
11
+ # via -r requirements/base.in
12
+ arrow==1.2.3 \
13
+ --hash=sha256:3934b30ca1b9f292376d9db15b19446088d12ec58629bc3f0da28fd55fb633a1 \
14
+ --hash=sha256:5a49ab92e3b7b71d96cd6bfcc4df14efefc9dfa96ea19045815914a6ab6b1fe2
15
+ # via jinja2-time
16
+ attrs==22.2.0 \
17
+ --hash=sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836 \
18
+ --hash=sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99
19
+ # via -r requirements/base.in
20
+ binaryornot==0.4.4 \
21
+ --hash=sha256:359501dfc9d40632edc9fac890e19542db1a287bbcfa58175b66658392018061 \
22
+ --hash=sha256:b8b71173c917bddcd2c16070412e369c3ed7f0528926f70cac18a6c97fd563e4
23
+ # via cookiecutter
24
+ certifi==2022.12.7 \
25
+ --hash=sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3 \
26
+ --hash=sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18
27
+ # via requests
28
+ chardet==5.1.0 \
29
+ --hash=sha256:0d62712b956bc154f85fb0a266e2a3c5913c2967e00348701b32411d6def31e5 \
30
+ --hash=sha256:362777fb014af596ad31334fde1e8c327dfdb076e1960d1694662d46a6917ab9
31
+ # via binaryornot
32
+ charset-normalizer==3.0.1 \
33
+ --hash=sha256:00d3ffdaafe92a5dc603cb9bd5111aaa36dfa187c8285c543be562e61b755f6b \
34
+ --hash=sha256:024e606be3ed92216e2b6952ed859d86b4cfa52cd5bc5f050e7dc28f9b43ec42 \
35
+ --hash=sha256:0298eafff88c99982a4cf66ba2efa1128e4ddaca0b05eec4c456bbc7db691d8d \
36
+ --hash=sha256:02a51034802cbf38db3f89c66fb5d2ec57e6fe7ef2f4a44d070a593c3688667b \
37
+ --hash=sha256:083c8d17153ecb403e5e1eb76a7ef4babfc2c48d58899c98fcaa04833e7a2f9a \
38
+ --hash=sha256:0a11e971ed097d24c534c037d298ad32c6ce81a45736d31e0ff0ad37ab437d59 \
39
+ --hash=sha256:0bf2dae5291758b6f84cf923bfaa285632816007db0330002fa1de38bfcb7154 \
40
+ --hash=sha256:0c0a590235ccd933d9892c627dec5bc7511ce6ad6c1011fdf5b11363022746c1 \
41
+ --hash=sha256:0f438ae3532723fb6ead77e7c604be7c8374094ef4ee2c5e03a3a17f1fca256c \
42
+ --hash=sha256:109487860ef6a328f3eec66f2bf78b0b72400280d8f8ea05f69c51644ba6521a \
43
+ --hash=sha256:11b53acf2411c3b09e6af37e4b9005cba376c872503c8f28218c7243582df45d \
44
+ --hash=sha256:12db3b2c533c23ab812c2b25934f60383361f8a376ae272665f8e48b88e8e1c6 \
45
+ --hash=sha256:14e76c0f23218b8f46c4d87018ca2e441535aed3632ca134b10239dfb6dadd6b \
46
+ --hash=sha256:16a8663d6e281208d78806dbe14ee9903715361cf81f6d4309944e4d1e59ac5b \
47
+ --hash=sha256:292d5e8ba896bbfd6334b096e34bffb56161c81408d6d036a7dfa6929cff8783 \
48
+ --hash=sha256:2c03cc56021a4bd59be889c2b9257dae13bf55041a3372d3295416f86b295fb5 \
49
+ --hash=sha256:2e396d70bc4ef5325b72b593a72c8979999aa52fb8bcf03f701c1b03e1166918 \
50
+ --hash=sha256:2edb64ee7bf1ed524a1da60cdcd2e1f6e2b4f66ef7c077680739f1641f62f555 \
51
+ --hash=sha256:31a9ddf4718d10ae04d9b18801bd776693487cbb57d74cc3458a7673f6f34639 \
52
+ --hash=sha256:356541bf4381fa35856dafa6a965916e54bed415ad8a24ee6de6e37deccf2786 \
53
+ --hash=sha256:358a7c4cb8ba9b46c453b1dd8d9e431452d5249072e4f56cfda3149f6ab1405e \
54
+ --hash=sha256:37f8febc8ec50c14f3ec9637505f28e58d4f66752207ea177c1d67df25da5aed \
55
+ --hash=sha256:39049da0ffb96c8cbb65cbf5c5f3ca3168990adf3551bd1dee10c48fce8ae820 \
56
+ --hash=sha256:39cf9ed17fe3b1bc81f33c9ceb6ce67683ee7526e65fde1447c772afc54a1bb8 \
57
+ --hash=sha256:3ae1de54a77dc0d6d5fcf623290af4266412a7c4be0b1ff7444394f03f5c54e3 \
58
+ --hash=sha256:3b590df687e3c5ee0deef9fc8c547d81986d9a1b56073d82de008744452d6541 \
59
+ --hash=sha256:3e45867f1f2ab0711d60c6c71746ac53537f1684baa699f4f668d4c6f6ce8e14 \
60
+ --hash=sha256:3fc1c4a2ffd64890aebdb3f97e1278b0cc72579a08ca4de8cd2c04799a3a22be \
61
+ --hash=sha256:4457ea6774b5611f4bed5eaa5df55f70abde42364d498c5134b7ef4c6958e20e \
62
+ --hash=sha256:44ba614de5361b3e5278e1241fda3dc1838deed864b50a10d7ce92983797fa76 \
63
+ --hash=sha256:4a8fcf28c05c1f6d7e177a9a46a1c52798bfe2ad80681d275b10dcf317deaf0b \
64
+ --hash=sha256:4b0d02d7102dd0f997580b51edc4cebcf2ab6397a7edf89f1c73b586c614272c \
65
+ --hash=sha256:502218f52498a36d6bf5ea77081844017bf7982cdbe521ad85e64cabee1b608b \
66
+ --hash=sha256:503e65837c71b875ecdd733877d852adbc465bd82c768a067badd953bf1bc5a3 \
67
+ --hash=sha256:5995f0164fa7df59db4746112fec3f49c461dd6b31b841873443bdb077c13cfc \
68
+ --hash=sha256:59e5686dd847347e55dffcc191a96622f016bc0ad89105e24c14e0d6305acbc6 \
69
+ --hash=sha256:601f36512f9e28f029d9481bdaf8e89e5148ac5d89cffd3b05cd533eeb423b59 \
70
+ --hash=sha256:608862a7bf6957f2333fc54ab4399e405baad0163dc9f8d99cb236816db169d4 \
71
+ --hash=sha256:62595ab75873d50d57323a91dd03e6966eb79c41fa834b7a1661ed043b2d404d \
72
+ --hash=sha256:70990b9c51340e4044cfc394a81f614f3f90d41397104d226f21e66de668730d \
73
+ --hash=sha256:71140351489970dfe5e60fc621ada3e0f41104a5eddaca47a7acb3c1b851d6d3 \
74
+ --hash=sha256:72966d1b297c741541ca8cf1223ff262a6febe52481af742036a0b296e35fa5a \
75
+ --hash=sha256:74292fc76c905c0ef095fe11e188a32ebd03bc38f3f3e9bcb85e4e6db177b7ea \
76
+ --hash=sha256:761e8904c07ad053d285670f36dd94e1b6ab7f16ce62b9805c475b7aa1cffde6 \
77
+ --hash=sha256:772b87914ff1152b92a197ef4ea40efe27a378606c39446ded52c8f80f79702e \
78
+ --hash=sha256:79909e27e8e4fcc9db4addea88aa63f6423ebb171db091fb4373e3312cb6d603 \
79
+ --hash=sha256:7e189e2e1d3ed2f4aebabd2d5b0f931e883676e51c7624826e0a4e5fe8a0bf24 \
80
+ --hash=sha256:7eb33a30d75562222b64f569c642ff3dc6689e09adda43a082208397f016c39a \
81
+ --hash=sha256:81d6741ab457d14fdedc215516665050f3822d3e56508921cc7239f8c8e66a58 \
82
+ --hash=sha256:8499ca8f4502af841f68135133d8258f7b32a53a1d594aa98cc52013fff55678 \
83
+ --hash=sha256:84c3990934bae40ea69a82034912ffe5a62c60bbf6ec5bc9691419641d7d5c9a \
84
+ --hash=sha256:87701167f2a5c930b403e9756fab1d31d4d4da52856143b609e30a1ce7160f3c \
85
+ --hash=sha256:88600c72ef7587fe1708fd242b385b6ed4b8904976d5da0893e31df8b3480cb6 \
86
+ --hash=sha256:8ac7b6a045b814cf0c47f3623d21ebd88b3e8cf216a14790b455ea7ff0135d18 \
87
+ --hash=sha256:8b8af03d2e37866d023ad0ddea594edefc31e827fee64f8de5611a1dbc373174 \
88
+ --hash=sha256:8c7fe7afa480e3e82eed58e0ca89f751cd14d767638e2550c77a92a9e749c317 \
89
+ --hash=sha256:8eade758719add78ec36dc13201483f8e9b5d940329285edcd5f70c0a9edbd7f \
90
+ --hash=sha256:911d8a40b2bef5b8bbae2e36a0b103f142ac53557ab421dc16ac4aafee6f53dc \
91
+ --hash=sha256:93ad6d87ac18e2a90b0fe89df7c65263b9a99a0eb98f0a3d2e079f12a0735837 \
92
+ --hash=sha256:95dea361dd73757c6f1c0a1480ac499952c16ac83f7f5f4f84f0658a01b8ef41 \
93
+ --hash=sha256:9ab77acb98eba3fd2a85cd160851816bfce6871d944d885febf012713f06659c \
94
+ --hash=sha256:9cb3032517f1627cc012dbc80a8ec976ae76d93ea2b5feaa9d2a5b8882597579 \
95
+ --hash=sha256:9cf4e8ad252f7c38dd1f676b46514f92dc0ebeb0db5552f5f403509705e24753 \
96
+ --hash=sha256:9d9153257a3f70d5f69edf2325357251ed20f772b12e593f3b3377b5f78e7ef8 \
97
+ --hash=sha256:a152f5f33d64a6be73f1d30c9cc82dfc73cec6477ec268e7c6e4c7d23c2d2291 \
98
+ --hash=sha256:a16418ecf1329f71df119e8a65f3aa68004a3f9383821edcb20f0702934d8087 \
99
+ --hash=sha256:a60332922359f920193b1d4826953c507a877b523b2395ad7bc716ddd386d866 \
100
+ --hash=sha256:a8d0fc946c784ff7f7c3742310cc8a57c5c6dc31631269876a88b809dbeff3d3 \
101
+ --hash=sha256:ab5de034a886f616a5668aa5d098af2b5385ed70142090e2a31bcbd0af0fdb3d \
102
+ --hash=sha256:c22d3fe05ce11d3671297dc8973267daa0f938b93ec716e12e0f6dee81591dc1 \
103
+ --hash=sha256:c2ac1b08635a8cd4e0cbeaf6f5e922085908d48eb05d44c5ae9eabab148512ca \
104
+ --hash=sha256:c512accbd6ff0270939b9ac214b84fb5ada5f0409c44298361b2f5e13f9aed9e \
105
+ --hash=sha256:c75ffc45f25324e68ab238cb4b5c0a38cd1c3d7f1fb1f72b5541de469e2247db \
106
+ --hash=sha256:c95a03c79bbe30eec3ec2b7f076074f4281526724c8685a42872974ef4d36b72 \
107
+ --hash=sha256:cadaeaba78750d58d3cc6ac4d1fd867da6fc73c88156b7a3212a3cd4819d679d \
108
+ --hash=sha256:cd6056167405314a4dc3c173943f11249fa0f1b204f8b51ed4bde1a9cd1834dc \
109
+ --hash=sha256:db72b07027db150f468fbada4d85b3b2729a3db39178abf5c543b784c1254539 \
110
+ --hash=sha256:df2c707231459e8a4028eabcd3cfc827befd635b3ef72eada84ab13b52e1574d \
111
+ --hash=sha256:e62164b50f84e20601c1ff8eb55620d2ad25fb81b59e3cd776a1902527a788af \
112
+ --hash=sha256:e696f0dd336161fca9adbb846875d40752e6eba585843c768935ba5c9960722b \
113
+ --hash=sha256:eaa379fcd227ca235d04152ca6704c7cb55564116f8bc52545ff357628e10602 \
114
+ --hash=sha256:ebea339af930f8ca5d7a699b921106c6e29c617fe9606fa7baa043c1cdae326f \
115
+ --hash=sha256:f4c39b0e3eac288fedc2b43055cfc2ca7a60362d0e5e87a637beac5d801ef478 \
116
+ --hash=sha256:f5057856d21e7586765171eac8b9fc3f7d44ef39425f85dbcccb13b3ebea806c \
117
+ --hash=sha256:f6f45710b4459401609ebebdbcfb34515da4fc2aa886f95107f556ac69a9147e \
118
+ --hash=sha256:f97e83fa6c25693c7a35de154681fcc257c1c41b38beb0304b9c4d2d9e164479 \
119
+ --hash=sha256:f9d0c5c045a3ca9bedfc35dca8526798eb91a07aa7a2c0fee134c6c6f321cbd7 \
120
+ --hash=sha256:ff6f3db31555657f3163b15a6b7c6938d08df7adbfc9dd13d9d19edad678f1e8
121
+ # via requests
122
+ click==8.1.3 \
123
+ --hash=sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e \
124
+ --hash=sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48
125
+ # via cookiecutter
126
+ cookiecutter==2.1.1 \
127
+ --hash=sha256:9f3ab027cec4f70916e28f03470bdb41e637a3ad354b4d65c765d93aad160022 \
128
+ --hash=sha256:f3982be8d9c53dac1261864013fdec7f83afd2e42ede6f6dd069c5e149c540d5
129
+ # via -r requirements/base.in
130
+ giturlparse==0.10.0 \
131
+ --hash=sha256:04ba1a3a099c3093fa8d24a422913c6a9b2c2cd22bcffc939cf72e3e98f672d7 \
132
+ --hash=sha256:2595ab291d30717cda8474b874c9fd509f1b9802ad7f6968c36a45e4b13eb337
133
+ # via mozilla-repo-urls
134
+ idna==3.4 \
135
+ --hash=sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4 \
136
+ --hash=sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2
137
+ # via requests
138
+ jinja2==3.1.2 \
139
+ --hash=sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852 \
140
+ --hash=sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61
141
+ # via
142
+ # cookiecutter
143
+ # jinja2-time
144
+ jinja2-time==0.2.0 \
145
+ --hash=sha256:d14eaa4d315e7688daa4969f616f226614350c48730bfa1692d2caebd8c90d40 \
146
+ --hash=sha256:d3eab6605e3ec8b7a0863df09cc1d23714908fa61aa6986a845c20ba488b4efa
147
+ # via cookiecutter
148
+ json-e==4.5.0 \
149
+ --hash=sha256:618a94aecc8b8bc7733d6cd0ee7b676e45675566625a38958aa8b30379d9758f \
150
+ --hash=sha256:e733ce77b4acbbc2c48211057f8cb5af45999e6be4ce0f07585c5580df45826e
151
+ # via -r requirements/base.in
152
+ markupsafe==2.1.2 \
153
+ --hash=sha256:0576fe974b40a400449768941d5d0858cc624e3249dfd1e0c33674e5c7ca7aed \
154
+ --hash=sha256:085fd3201e7b12809f9e6e9bc1e5c96a368c8523fad5afb02afe3c051ae4afcc \
155
+ --hash=sha256:090376d812fb6ac5f171e5938e82e7f2d7adc2b629101cec0db8b267815c85e2 \
156
+ --hash=sha256:0b462104ba25f1ac006fdab8b6a01ebbfbce9ed37fd37fd4acd70c67c973e460 \
157
+ --hash=sha256:137678c63c977754abe9086a3ec011e8fd985ab90631145dfb9294ad09c102a7 \
158
+ --hash=sha256:1bea30e9bf331f3fef67e0a3877b2288593c98a21ccb2cf29b74c581a4eb3af0 \
159
+ --hash=sha256:22152d00bf4a9c7c83960521fc558f55a1adbc0631fbb00a9471e097b19d72e1 \
160
+ --hash=sha256:22731d79ed2eb25059ae3df1dfc9cb1546691cc41f4e3130fe6bfbc3ecbbecfa \
161
+ --hash=sha256:2298c859cfc5463f1b64bd55cb3e602528db6fa0f3cfd568d3605c50678f8f03 \
162
+ --hash=sha256:28057e985dace2f478e042eaa15606c7efccb700797660629da387eb289b9323 \
163
+ --hash=sha256:2e7821bffe00aa6bd07a23913b7f4e01328c3d5cc0b40b36c0bd81d362faeb65 \
164
+ --hash=sha256:2ec4f2d48ae59bbb9d1f9d7efb9236ab81429a764dedca114f5fdabbc3788013 \
165
+ --hash=sha256:340bea174e9761308703ae988e982005aedf427de816d1afe98147668cc03036 \
166
+ --hash=sha256:40627dcf047dadb22cd25ea7ecfe9cbf3bbbad0482ee5920b582f3809c97654f \
167
+ --hash=sha256:40dfd3fefbef579ee058f139733ac336312663c6706d1163b82b3003fb1925c4 \
168
+ --hash=sha256:4cf06cdc1dda95223e9d2d3c58d3b178aa5dacb35ee7e3bbac10e4e1faacb419 \
169
+ --hash=sha256:50c42830a633fa0cf9e7d27664637532791bfc31c731a87b202d2d8ac40c3ea2 \
170
+ --hash=sha256:55f44b440d491028addb3b88f72207d71eeebfb7b5dbf0643f7c023ae1fba619 \
171
+ --hash=sha256:608e7073dfa9e38a85d38474c082d4281f4ce276ac0010224eaba11e929dd53a \
172
+ --hash=sha256:63ba06c9941e46fa389d389644e2d8225e0e3e5ebcc4ff1ea8506dce646f8c8a \
173
+ --hash=sha256:65608c35bfb8a76763f37036547f7adfd09270fbdbf96608be2bead319728fcd \
174
+ --hash=sha256:665a36ae6f8f20a4676b53224e33d456a6f5a72657d9c83c2aa00765072f31f7 \
175
+ --hash=sha256:6d6607f98fcf17e534162f0709aaad3ab7a96032723d8ac8750ffe17ae5a0666 \
176
+ --hash=sha256:7313ce6a199651c4ed9d7e4cfb4aa56fe923b1adf9af3b420ee14e6d9a73df65 \
177
+ --hash=sha256:7668b52e102d0ed87cb082380a7e2e1e78737ddecdde129acadb0eccc5423859 \
178
+ --hash=sha256:7df70907e00c970c60b9ef2938d894a9381f38e6b9db73c5be35e59d92e06625 \
179
+ --hash=sha256:7e007132af78ea9df29495dbf7b5824cb71648d7133cf7848a2a5dd00d36f9ff \
180
+ --hash=sha256:835fb5e38fd89328e9c81067fd642b3593c33e1e17e2fdbf77f5676abb14a156 \
181
+ --hash=sha256:8bca7e26c1dd751236cfb0c6c72d4ad61d986e9a41bbf76cb445f69488b2a2bd \
182
+ --hash=sha256:8db032bf0ce9022a8e41a22598eefc802314e81b879ae093f36ce9ddf39ab1ba \
183
+ --hash=sha256:99625a92da8229df6d44335e6fcc558a5037dd0a760e11d84be2260e6f37002f \
184
+ --hash=sha256:9cad97ab29dfc3f0249b483412c85c8ef4766d96cdf9dcf5a1e3caa3f3661cf1 \
185
+ --hash=sha256:a4abaec6ca3ad8660690236d11bfe28dfd707778e2442b45addd2f086d6ef094 \
186
+ --hash=sha256:a6e40afa7f45939ca356f348c8e23048e02cb109ced1eb8420961b2f40fb373a \
187
+ --hash=sha256:a6f2fcca746e8d5910e18782f976489939d54a91f9411c32051b4aab2bd7c513 \
188
+ --hash=sha256:a806db027852538d2ad7555b203300173dd1b77ba116de92da9afbc3a3be3eed \
189
+ --hash=sha256:abcabc8c2b26036d62d4c746381a6f7cf60aafcc653198ad678306986b09450d \
190
+ --hash=sha256:b8526c6d437855442cdd3d87eede9c425c4445ea011ca38d937db299382e6fa3 \
191
+ --hash=sha256:bb06feb762bade6bf3c8b844462274db0c76acc95c52abe8dbed28ae3d44a147 \
192
+ --hash=sha256:c0a33bc9f02c2b17c3ea382f91b4db0e6cde90b63b296422a939886a7a80de1c \
193
+ --hash=sha256:c4a549890a45f57f1ebf99c067a4ad0cb423a05544accaf2b065246827ed9603 \
194
+ --hash=sha256:ca244fa73f50a800cf8c3ebf7fd93149ec37f5cb9596aa8873ae2c1d23498601 \
195
+ --hash=sha256:cf877ab4ed6e302ec1d04952ca358b381a882fbd9d1b07cccbfd61783561f98a \
196
+ --hash=sha256:d9d971ec1e79906046aa3ca266de79eac42f1dbf3612a05dc9368125952bd1a1 \
197
+ --hash=sha256:da25303d91526aac3672ee6d49a2f3db2d9502a4a60b55519feb1a4c7714e07d \
198
+ --hash=sha256:e55e40ff0cc8cc5c07996915ad367fa47da6b3fc091fdadca7f5403239c5fec3 \
199
+ --hash=sha256:f03a532d7dee1bed20bc4884194a16160a2de9ffc6354b3878ec9682bb623c54 \
200
+ --hash=sha256:f1cd098434e83e656abf198f103a8207a8187c0fc110306691a2e94a78d0abb2 \
201
+ --hash=sha256:f2bfb563d0211ce16b63c7cb9395d2c682a23187f54c3d79bfec33e6705473c6 \
202
+ --hash=sha256:f8ffb705ffcf5ddd0e80b65ddf7bed7ee4f5a441ea7d3419e861a12eaf41af58
203
+ # via jinja2
204
+ mozilla-repo-urls==0.1.1 \
205
+ --hash=sha256:30510d3519479aa70211145d0ac9cf6e2fadcb8d30fa3b196bb957bd773502ba \
206
+ --hash=sha256:7364da790751db2a060eb45adbf1d7db89a145ed279ba235f3425db9dd255915
207
+ # via -r requirements/base.in
208
+ python-dateutil==2.8.2 \
209
+ --hash=sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86 \
210
+ --hash=sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9
211
+ # via arrow
212
+ python-slugify==8.0.1 \
213
+ --hash=sha256:70ca6ea68fe63ecc8fa4fcf00ae651fc8a5d02d93dcd12ae6d4fc7ca46c4d395 \
214
+ --hash=sha256:ce0d46ddb668b3be82f4ed5e503dbc33dd815d83e2eb6824211310d3fb172a27
215
+ # via cookiecutter
216
+ pyyaml==6.0 \
217
+ --hash=sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf \
218
+ --hash=sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293 \
219
+ --hash=sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b \
220
+ --hash=sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57 \
221
+ --hash=sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b \
222
+ --hash=sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4 \
223
+ --hash=sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07 \
224
+ --hash=sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba \
225
+ --hash=sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9 \
226
+ --hash=sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287 \
227
+ --hash=sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513 \
228
+ --hash=sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0 \
229
+ --hash=sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782 \
230
+ --hash=sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0 \
231
+ --hash=sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92 \
232
+ --hash=sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f \
233
+ --hash=sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2 \
234
+ --hash=sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc \
235
+ --hash=sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1 \
236
+ --hash=sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c \
237
+ --hash=sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86 \
238
+ --hash=sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4 \
239
+ --hash=sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c \
240
+ --hash=sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34 \
241
+ --hash=sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b \
242
+ --hash=sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d \
243
+ --hash=sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c \
244
+ --hash=sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb \
245
+ --hash=sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7 \
246
+ --hash=sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737 \
247
+ --hash=sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3 \
248
+ --hash=sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d \
249
+ --hash=sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358 \
250
+ --hash=sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53 \
251
+ --hash=sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78 \
252
+ --hash=sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803 \
253
+ --hash=sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a \
254
+ --hash=sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f \
255
+ --hash=sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174 \
256
+ --hash=sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5
257
+ # via
258
+ # -r requirements/base.in
259
+ # cookiecutter
260
+ redo==2.0.4 \
261
+ --hash=sha256:81066955041c853b0e6491eb65a0877dce45131c4cfa3d42d923fc2aa8f7a043 \
262
+ --hash=sha256:c76e4c23ab2f8840261736a851323cd98493710e7a9d36a1058535dca501f293
263
+ # via -r requirements/base.in
264
+ requests==2.28.2 \
265
+ --hash=sha256:64299f4909223da747622c030b781c0d7811e359c37124b4bd368fb8c6518baa \
266
+ --hash=sha256:98b1b2782e3c6c4904938b84c0eb932721069dfdb9134313beff7c83c2df24bf
267
+ # via
268
+ # -r requirements/base.in
269
+ # cookiecutter
270
+ # requests-unixsocket
271
+ requests-unixsocket==0.3.0 \
272
+ --hash=sha256:28304283ea9357d45fff58ad5b11e47708cfbf5806817aa59b2a363228ee971e \
273
+ --hash=sha256:c685c680f0809e1b2955339b1e5afc3c0022b3066f4f7eb343f43a6065fc0e5d
274
+ # via -r requirements/base.in
275
+ six==1.16.0 \
276
+ --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \
277
+ --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254
278
+ # via python-dateutil
279
+ slugid==2.0.0 \
280
+ --hash=sha256:a950d98b72691178bdd4d6c52743c4a2aa039207cf7a97d71060a111ff9ba297 \
281
+ --hash=sha256:aec8b0e01c4ad32e38e12d609eab3ec912fd129aaf6b2ded0199b56a5f8fd67c
282
+ # via -r requirements/base.in
283
+ taskcluster-urls==13.0.1 \
284
+ --hash=sha256:5e25e7e6818e8877178b175ff43d2e6548afad72694aa125f404a7329ece0973 \
285
+ --hash=sha256:b25e122ecec249c4299ac7b20b08db76e3e2025bdaeb699a9d444556de5fd367 \
286
+ --hash=sha256:f66dcbd6572a6216ab65949f0fa0b91f2df647918028436c384e6af5cd12ae2b
287
+ # via -r requirements/base.in
288
+ text-unidecode==1.3 \
289
+ --hash=sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8 \
290
+ --hash=sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93
291
+ # via python-slugify
292
+ urllib3==1.26.14 \
293
+ --hash=sha256:076907bf8fd355cde77728471316625a4d2f7e713c125f51953bb5b3eecf4f72 \
294
+ --hash=sha256:75edcdc2f7d85b137124a6c3c9fc3933cdeaa12ecb9a6a959f22797a0feca7e1
295
+ # via requests
296
+ voluptuous==0.13.1 \
297
+ --hash=sha256:4b838b185f5951f2d6e8752b68fcf18bd7a9c26ded8f143f92d6d28f3921a3e6 \
298
+ --hash=sha256:e8d31c20601d6773cb14d4c0f42aee29c6821bbd1018039aac7ac5605b489723
299
+ # via -r requirements/base.in
@@ -0,0 +1,2 @@
1
+ -r test.in
2
+ pre-commit
@@ -0,0 +1,28 @@
1
+ # SHA1:afc4a9b5d899d90f52cc352461776ac6c7363a37
2
+ #
3
+ # This file is autogenerated by pip-compile-multi
4
+ # To update, run:
5
+ #
6
+ # pip-compile-multi
7
+ #
8
+ -r test.txt
9
+ cfgv==3.3.1 \
10
+ --hash=sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426 \
11
+ --hash=sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736
12
+ # via pre-commit
13
+ identify==2.5.13 \
14
+ --hash=sha256:8aa48ce56e38c28b6faa9f261075dea0a942dfbb42b341b4e711896cbb40f3f7 \
15
+ --hash=sha256:abb546bca6f470228785338a01b539de8a85bbf46491250ae03363956d8ebb10
16
+ # via pre-commit
17
+ nodeenv==1.7.0 \
18
+ --hash=sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e \
19
+ --hash=sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b
20
+ # via pre-commit
21
+ pre-commit==2.21.0 \
22
+ --hash=sha256:31ef31af7e474a8d8995027fefdfcf509b5c913ff31f2015b4ec4beb26a6f658 \
23
+ --hash=sha256:e2f91727039fc39a92f58a588a25b87f936de6567eed4f0e673e0507edc75bad
24
+ # via -r requirements/dev.in
25
+
26
+ # WARNING: The following packages were not pinned, but pip requires them to be
27
+ # pinned when the requirements file includes hashes. Consider using the --allow-unsafe flag.
28
+ # setuptools
@@ -0,0 +1,7 @@
1
+ -r base.in
2
+ coverage
3
+ mock
4
+ pytest
5
+ pytest-mock
6
+ responses
7
+ tox
@@ -0,0 +1,171 @@
1
+ # SHA1:0cbb82cbf14365738df0c1100a54f7ee5e312452
2
+ #
3
+ # This file is autogenerated by pip-compile-multi
4
+ # To update, run:
5
+ #
6
+ # pip-compile-multi
7
+ #
8
+ -r base.txt
9
+ cachetools==5.2.1 \
10
+ --hash=sha256:5991bc0e08a1319bb618d3195ca5b6bc76646a49c21d55962977197b301cc1fe \
11
+ --hash=sha256:8462eebf3a6c15d25430a8c27c56ac61340b2ecf60c9ce57afc2b97e450e47da
12
+ # via tox
13
+ colorama==0.4.6 \
14
+ --hash=sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44 \
15
+ --hash=sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6
16
+ # via tox
17
+ coverage==7.0.5 \
18
+ --hash=sha256:051afcbd6d2ac39298d62d340f94dbb6a1f31de06dfaf6fcef7b759dd3860c45 \
19
+ --hash=sha256:0a1890fca2962c4f1ad16551d660b46ea77291fba2cc21c024cd527b9d9c8809 \
20
+ --hash=sha256:0ee30375b409d9a7ea0f30c50645d436b6f5dfee254edffd27e45a980ad2c7f4 \
21
+ --hash=sha256:13250b1f0bd023e0c9f11838bdeb60214dd5b6aaf8e8d2f110c7e232a1bff83b \
22
+ --hash=sha256:17e01dd8666c445025c29684d4aabf5a90dc6ef1ab25328aa52bedaa95b65ad7 \
23
+ --hash=sha256:19245c249aa711d954623d94f23cc94c0fd65865661f20b7781210cb97c471c0 \
24
+ --hash=sha256:1caed2367b32cc80a2b7f58a9f46658218a19c6cfe5bc234021966dc3daa01f0 \
25
+ --hash=sha256:1f66862d3a41674ebd8d1a7b6f5387fe5ce353f8719040a986551a545d7d83ea \
26
+ --hash=sha256:220e3fa77d14c8a507b2d951e463b57a1f7810a6443a26f9b7591ef39047b1b2 \
27
+ --hash=sha256:276f4cd0001cd83b00817c8db76730938b1ee40f4993b6a905f40a7278103b3a \
28
+ --hash=sha256:29de916ba1099ba2aab76aca101580006adfac5646de9b7c010a0f13867cba45 \
29
+ --hash=sha256:2a7f23bbaeb2a87f90f607730b45564076d870f1fb07b9318d0c21f36871932b \
30
+ --hash=sha256:2c407b1950b2d2ffa091f4e225ca19a66a9bd81222f27c56bd12658fc5ca1209 \
31
+ --hash=sha256:30b5fec1d34cc932c1bc04017b538ce16bf84e239378b8f75220478645d11fca \
32
+ --hash=sha256:3c2155943896ac78b9b0fd910fb381186d0c345911f5333ee46ac44c8f0e43ab \
33
+ --hash=sha256:411d4ff9d041be08fdfc02adf62e89c735b9468f6d8f6427f8a14b6bb0a85095 \
34
+ --hash=sha256:436e103950d05b7d7f55e39beeb4d5be298ca3e119e0589c0227e6d0b01ee8c7 \
35
+ --hash=sha256:49640bda9bda35b057b0e65b7c43ba706fa2335c9a9896652aebe0fa399e80e6 \
36
+ --hash=sha256:4a950f83fd3f9bca23b77442f3a2b2ea4ac900944d8af9993743774c4fdc57af \
37
+ --hash=sha256:50a6adc2be8edd7ee67d1abc3cd20678987c7b9d79cd265de55941e3d0d56499 \
38
+ --hash=sha256:52ab14b9e09ce052237dfe12d6892dd39b0401690856bcfe75d5baba4bfe2831 \
39
+ --hash=sha256:54f7e9705e14b2c9f6abdeb127c390f679f6dbe64ba732788d3015f7f76ef637 \
40
+ --hash=sha256:66e50680e888840c0995f2ad766e726ce71ca682e3c5f4eee82272c7671d38a2 \
41
+ --hash=sha256:790e4433962c9f454e213b21b0fd4b42310ade9c077e8edcb5113db0818450cb \
42
+ --hash=sha256:7a38362528a9115a4e276e65eeabf67dcfaf57698e17ae388599568a78dcb029 \
43
+ --hash=sha256:7b05ed4b35bf6ee790832f68932baf1f00caa32283d66cc4d455c9e9d115aafc \
44
+ --hash=sha256:7e109f1c9a3ece676597831874126555997c48f62bddbcace6ed17be3e372de8 \
45
+ --hash=sha256:949844af60ee96a376aac1ded2a27e134b8c8d35cc006a52903fc06c24a3296f \
46
+ --hash=sha256:95304068686545aa368b35dfda1cdfbbdbe2f6fe43de4a2e9baa8ebd71be46e2 \
47
+ --hash=sha256:9e662e6fc4f513b79da5d10a23edd2b87685815b337b1a30cd11307a6679148d \
48
+ --hash=sha256:a9fed35ca8c6e946e877893bbac022e8563b94404a605af1d1e6accc7eb73289 \
49
+ --hash=sha256:b69522b168a6b64edf0c33ba53eac491c0a8f5cc94fa4337f9c6f4c8f2f5296c \
50
+ --hash=sha256:b78729038abea6a5df0d2708dce21e82073463b2d79d10884d7d591e0f385ded \
51
+ --hash=sha256:b8c56bec53d6e3154eaff6ea941226e7bd7cc0d99f9b3756c2520fc7a94e6d96 \
52
+ --hash=sha256:b9727ac4f5cf2cbf87880a63870b5b9730a8ae3a4a360241a0fdaa2f71240ff0 \
53
+ --hash=sha256:ba3027deb7abf02859aca49c865ece538aee56dcb4871b4cced23ba4d5088904 \
54
+ --hash=sha256:be9fcf32c010da0ba40bf4ee01889d6c737658f4ddff160bd7eb9cac8f094b21 \
55
+ --hash=sha256:c18d47f314b950dbf24a41787ced1474e01ca816011925976d90a88b27c22b89 \
56
+ --hash=sha256:c76a3075e96b9c9ff00df8b5f7f560f5634dffd1658bafb79eb2682867e94f78 \
57
+ --hash=sha256:cbfcba14a3225b055a28b3199c3d81cd0ab37d2353ffd7f6fd64844cebab31ad \
58
+ --hash=sha256:d254666d29540a72d17cc0175746cfb03d5123db33e67d1020e42dae611dc196 \
59
+ --hash=sha256:d66187792bfe56f8c18ba986a0e4ae44856b1c645336bd2c776e3386da91e1dd \
60
+ --hash=sha256:d8d04e755934195bdc1db45ba9e040b8d20d046d04d6d77e71b3b34a8cc002d0 \
61
+ --hash=sha256:d8f3e2e0a1d6777e58e834fd5a04657f66affa615dae61dd67c35d1568c38882 \
62
+ --hash=sha256:e057e74e53db78122a3979f908973e171909a58ac20df05c33998d52e6d35757 \
63
+ --hash=sha256:e4ce984133b888cc3a46867c8b4372c7dee9cee300335e2925e197bcd45b9e16 \
64
+ --hash=sha256:ea76dbcad0b7b0deb265d8c36e0801abcddf6cc1395940a24e3595288b405ca0 \
65
+ --hash=sha256:ecb0f73954892f98611e183f50acdc9e21a4653f294dfbe079da73c6378a6f47 \
66
+ --hash=sha256:ef14d75d86f104f03dea66c13188487151760ef25dd6b2dbd541885185f05f40 \
67
+ --hash=sha256:f26648e1b3b03b6022b48a9b910d0ae209e2d51f50441db5dce5b530fad6d9b1 \
68
+ --hash=sha256:f67472c09a0c7486e27f3275f617c964d25e35727af952869dd496b9b5b7f6a3
69
+ # via -r requirements/test.in
70
+ distlib==0.3.6 \
71
+ --hash=sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46 \
72
+ --hash=sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e
73
+ # via virtualenv
74
+ exceptiongroup==1.1.0 \
75
+ --hash=sha256:327cbda3da756e2de031a3107b81ab7b3770a602c4d16ca618298c526f4bec1e \
76
+ --hash=sha256:bcb67d800a4497e1b404c2dd44fca47d3b7a5e5433dbab67f96c1a685cdfdf23
77
+ # via pytest
78
+ filelock==3.9.0 \
79
+ --hash=sha256:7b319f24340b51f55a2bf7a12ac0755a9b03e718311dac567a0f4f7fabd2f5de \
80
+ --hash=sha256:f58d535af89bb9ad5cd4df046f741f8553a418c01a7856bf0d173bbc9f6bd16d
81
+ # via
82
+ # tox
83
+ # virtualenv
84
+ importlib-metadata==6.0.0 \
85
+ --hash=sha256:7efb448ec9a5e313a57655d35aa54cd3e01b7e1fbcf72dce1bf06119420f5bad \
86
+ --hash=sha256:e354bedeb60efa6affdcc8ae121b73544a7aa74156d047311948f6d711cd378d
87
+ # via
88
+ # pluggy
89
+ # pytest
90
+ # tox
91
+ # virtualenv
92
+ iniconfig==2.0.0 \
93
+ --hash=sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3 \
94
+ --hash=sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374
95
+ # via pytest
96
+ mock==5.0.1 \
97
+ --hash=sha256:c41cfb1e99ba5d341fbcc5308836e7d7c9786d302f995b2c271ce2144dece9eb \
98
+ --hash=sha256:e3ea505c03babf7977fd21674a69ad328053d414f05e6433c30d8fa14a534a6b
99
+ # via -r requirements/test.in
100
+ packaging==23.0 \
101
+ --hash=sha256:714ac14496c3e68c99c29b00845f7a2b85f3bb6f1078fd9f72fd20f0570002b2 \
102
+ --hash=sha256:b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97
103
+ # via
104
+ # pyproject-api
105
+ # pytest
106
+ # tox
107
+ platformdirs==2.6.2 \
108
+ --hash=sha256:83c8f6d04389165de7c9b6f0c682439697887bca0aa2f1c87ef1826be3584490 \
109
+ --hash=sha256:e1fea1fe471b9ff8332e229df3cb7de4f53eeea4998d3b6bfff542115e998bd2
110
+ # via
111
+ # tox
112
+ # virtualenv
113
+ pluggy==1.0.0 \
114
+ --hash=sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159 \
115
+ --hash=sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3
116
+ # via
117
+ # pytest
118
+ # tox
119
+ pyproject-api==1.4.0 \
120
+ --hash=sha256:ac85c1f82e0291dbae5a7739dbb9a990e11ee4034c9b5599ea714f07a24ecd71 \
121
+ --hash=sha256:c34226297781efdd1ba4dfb74ce21076d9a8360e2125ea31803c1a02c76b2460
122
+ # via tox
123
+ pytest==7.2.1 \
124
+ --hash=sha256:c7c6ca206e93355074ae32f7403e8ea12163b1163c976fee7d4d84027c162be5 \
125
+ --hash=sha256:d45e0952f3727241918b8fd0f376f5ff6b301cc0777c6f9a556935c92d8a7d42
126
+ # via
127
+ # -r requirements/test.in
128
+ # pytest-mock
129
+ pytest-mock==3.10.0 \
130
+ --hash=sha256:f4c973eeae0282963eb293eb173ce91b091a79c1334455acfac9ddee8a1c784b \
131
+ --hash=sha256:fbbdb085ef7c252a326fd8cdcac0aa3b1333d8811f131bdcc701002e1be7ed4f
132
+ # via -r requirements/test.in
133
+ responses==0.22.0 \
134
+ --hash=sha256:396acb2a13d25297789a5866b4881cf4e46ffd49cc26c43ab1117f40b973102e \
135
+ --hash=sha256:dcf294d204d14c436fddcc74caefdbc5764795a40ff4e6a7740ed8ddbf3294be
136
+ # via -r requirements/test.in
137
+ toml==0.10.2 \
138
+ --hash=sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b \
139
+ --hash=sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f
140
+ # via responses
141
+ tomli==2.0.1 \
142
+ --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \
143
+ --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f
144
+ # via
145
+ # pyproject-api
146
+ # pytest
147
+ # tox
148
+ tox==4.3.1 \
149
+ --hash=sha256:3b4c8bb7f281989b5ea2c39e862711ef2dbd15fedbf0c5f64e7c04c7d8cd8957 \
150
+ --hash=sha256:df2bf3c8329d1bc23a618329480ddefc0400af42804f801599b2ec38914f6309
151
+ # via -r requirements/test.in
152
+ types-toml==0.10.8.1 \
153
+ --hash=sha256:171bdb3163d79a520560f24ba916a9fc9bff81659c5448a9fea89240923722be \
154
+ --hash=sha256:b7b5c4977f96ab7b5ac06d8a6590d17c0bf252a96efc03b109c2711fb3e0eafd
155
+ # via responses
156
+ typing-extensions==4.4.0 \
157
+ --hash=sha256:1511434bb92bf8dd198c12b1cc812e800d4181cfcb867674e0f8279cc93087aa \
158
+ --hash=sha256:16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e
159
+ # via
160
+ # importlib-metadata
161
+ # platformdirs
162
+ # responses
163
+ # tox
164
+ virtualenv==20.17.1 \
165
+ --hash=sha256:ce3b1684d6e1a20a3e5ed36795a97dfc6af29bc3970ca8dab93e11ac6094b3c4 \
166
+ --hash=sha256:f8b927684efc6f1cc206c9db297a570ab9ad0e51c16fa9e45487d36d1905c058
167
+ # via tox
168
+ zipp==3.11.0 \
169
+ --hash=sha256:83a28fcb75844b5c0cdaf5aa4003c2d728c77e05f5aeabe8e95e56727005fbaa \
170
+ --hash=sha256:a7a22e05929290a67401440b39690ae6563279bced5f314609d9d03798f56766
171
+ # via importlib-metadata
@@ -1,19 +1,21 @@
1
1
  import os
2
+ from distutils.util import convert_path
2
3
 
3
4
  from setuptools import find_packages, setup
4
5
 
5
6
  project_dir = os.path.abspath(os.path.dirname(__file__))
6
7
 
8
+ namespace = {}
9
+ version_file = convert_path("src/taskgraph/__init__.py")
10
+ with open(version_file) as fh:
11
+ exec(fh.read(), namespace)
7
12
 
8
13
  with open(os.path.join(project_dir, "requirements/base.in")) as fp:
9
14
  requirements = fp.read().splitlines()
10
15
 
11
- with open(os.path.join(project_dir, "version.txt")) as f:
12
- version = f.read().rstrip()
13
-
14
16
  setup(
15
17
  name="taskcluster-taskgraph",
16
- version=version,
18
+ version=namespace["__version__"],
17
19
  description="Build taskcluster taskgraphs",
18
20
  url="https://github.com/taskcluster/taskgraph",
19
21
  packages=find_packages("src"),
@@ -31,6 +33,7 @@ setup(
31
33
  "Programming Language :: Python :: 3.8",
32
34
  "Programming Language :: Python :: 3.9",
33
35
  "Programming Language :: Python :: 3.10",
36
+ "Programming Language :: Python :: 3.11",
34
37
  "Topic :: Software Development",
35
38
  ],
36
39
  entry_points={"console_scripts": ["taskgraph = taskgraph.main:main"]},
@@ -1,10 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: taskcluster-taskgraph
3
- Version: 4.1.1
3
+ Version: 4.3.0
4
4
  Summary: Build taskcluster taskgraphs
5
5
  Home-page: https://github.com/taskcluster/taskgraph
6
- License: UNKNOWN
7
- Platform: UNKNOWN
8
6
  Classifier: Development Status :: 5 - Production/Stable
9
7
  Classifier: Environment :: Console
10
8
  Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
@@ -13,9 +11,7 @@ Classifier: Programming Language :: Python :: 3.7
13
11
  Classifier: Programming Language :: Python :: 3.8
14
12
  Classifier: Programming Language :: Python :: 3.9
15
13
  Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
16
15
  Classifier: Topic :: Software Development
17
16
  Provides-Extra: load-image
18
17
  License-File: LICENSE
19
-
20
- UNKNOWN
21
-
@@ -3,7 +3,6 @@ MANIFEST.in
3
3
  README.rst
4
4
  pyproject.toml
5
5
  setup.py
6
- version.txt
7
6
  requirements/base.in
8
7
  requirements/base.txt
9
8
  requirements/dev.in
@@ -122,4 +121,5 @@ test/test_util_time.py
122
121
  test/test_util_treeherder.py
123
122
  test/test_util_vcs.py
124
123
  test/test_util_verify.py
124
+ test/test_util_workertypes.py
125
125
  test/test_util_yaml.py
@@ -1,3 +1,2 @@
1
1
  [console_scripts]
2
2
  taskgraph = taskgraph.main:main
3
-
@@ -1,5 +1,6 @@
1
1
  appdirs>=1.4
2
2
  attrs>=19.1.0
3
+ cookiecutter~=2.1
3
4
  json-e>=2.7
4
5
  mozilla-repo-urls
5
6
  PyYAML>=5.4
@@ -2,6 +2,7 @@
2
2
  # License, v. 2.0. If a copy of the MPL was not distributed with this
3
3
  # file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
4
 
5
+ __version__ = "4.3.0"
5
6
 
6
7
  # Maximum number of dependencies a single task can have
7
8
  # https://docs.taskcluster.net/reference/platform/taskcluster-queue/references/api#createTask