File tree Expand file tree Collapse file tree 5 files changed +34
-33
lines changed
Expand file tree Collapse file tree 5 files changed +34
-33
lines changed Original file line number Diff line number Diff line change 11{
22 "template" : " https://github.com/collijk/python-package-cookiecutter" ,
3- "commit" : " 02edc97b37505b2ed5b557da52e8d981a217d594 " ,
3+ "commit" : " 0a6fca5a3df116e2596adc8e8c7a0e5899e72352 " ,
44 "checkout" : null ,
55 "context" : {
66 "cookiecutter" : {
1212 "package_name" : " rra_tools" ,
1313 "project_short_description" : " Common utilities for IHME Rapid Response team pipelines." ,
1414 "_template" : " https://github.com/collijk/python-package-cookiecutter" ,
15- "_commit" : " 02edc97b37505b2ed5b557da52e8d981a217d594 "
15+ "_commit" : " 0a6fca5a3df116e2596adc8e8c7a0e5899e72352 "
1616 }
1717 },
1818 "directory" : null
Original file line number Diff line number Diff line change @@ -40,20 +40,20 @@ loguru = "^0.7.2"
4040requests = " ^2.32.2"
4141
4242[tool .poetry .group .dev .dependencies ]
43- mkdocstrings = {version = " >=0.23 " , extras = [" python" ]}
43+ mkdocstrings = {version = " * " , extras = [" python" ]}
4444mkdocs-material = " *"
4545mkdocs-table-reader-plugin = " *"
46- mkdocs-gen-files = " ^0.5.0 "
47- mkdocs-literate-nav = " ^0.6.1 "
48- mkdocs-section-index = " ^0.3.9 "
46+ mkdocs-gen-files = " * "
47+ mkdocs-literate-nav = " * "
48+ mkdocs-section-index = " * "
4949mypy = " *"
5050pre-commit = " *"
5151pymdown-extensions = " *"
5252pytest = " *"
5353pytest-github-actions-annotate-failures = " *"
5454pytest-cov = " *"
5555python-kacl = " *"
56- ruff = " ^0.4.3 "
56+ ruff = " * "
5757pandas-stubs = " *"
5858types-tqdm = " *"
5959
Original file line number Diff line number Diff line change 1818)
1919
2020__all__ = [
21+ "RUN_ALL" ,
22+ "ClickOption" ,
2123 "handle_exceptions" ,
2224 "import_module_from_info" ,
25+ "process_choices" ,
26+ "with_choice" ,
2327 "with_debugger" ,
2428 "with_dry_run" ,
2529 "with_input_directory" ,
2832 "with_progress_bar" ,
2933 "with_queue" ,
3034 "with_verbose" ,
31- "process_choices" ,
32- "with_choice" ,
33- "RUN_ALL" ,
34- "ClickOption" ,
3535]
Original file line number Diff line number Diff line change 77from rra_tools .logging .protocol import SupportsLogging
88
99__all__ = [
10- "configure_logging_to_terminal" ,
11- "configure_logging_to_files" ,
10+ "SupportsLogging" ,
1211 "add_logging_sink" ,
12+ "configure_logging_to_files" ,
13+ "configure_logging_to_terminal" ,
1314 "task_performance_logger" ,
14- "SupportsLogging" ,
1515]
You can’t perform that action at this time.
0 commit comments