Skip to content

Commit 62d3203

Browse files
committed
Merge branch 'main' of github.com:ihmeuw/rra-tools into feature/process-cli-choices
2 parents 29598ac + 6dbf483 commit 62d3203

File tree

5 files changed

+34
-33
lines changed

5 files changed

+34
-33
lines changed

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "https://github.com/collijk/python-package-cookiecutter",
3-
"commit": "02edc97b37505b2ed5b557da52e8d981a217d594",
3+
"commit": "0a6fca5a3df116e2596adc8e8c7a0e5899e72352",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -12,7 +12,7 @@
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

poetry.lock

Lines changed: 20 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,20 @@ loguru = "^0.7.2"
4040
requests = "^2.32.2"
4141

4242
[tool.poetry.group.dev.dependencies]
43-
mkdocstrings = {version = ">=0.23", extras = ["python"]}
43+
mkdocstrings = {version = "*", extras = ["python"]}
4444
mkdocs-material = "*"
4545
mkdocs-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 = "*"
4949
mypy = "*"
5050
pre-commit = "*"
5151
pymdown-extensions = "*"
5252
pytest = "*"
5353
pytest-github-actions-annotate-failures = "*"
5454
pytest-cov = "*"
5555
python-kacl = "*"
56-
ruff = "^0.4.3"
56+
ruff = "*"
5757
pandas-stubs = "*"
5858
types-tqdm = "*"
5959

src/rra_tools/cli_tools/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@
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",
@@ -28,8 +32,4 @@
2832
"with_progress_bar",
2933
"with_queue",
3034
"with_verbose",
31-
"process_choices",
32-
"with_choice",
33-
"RUN_ALL",
34-
"ClickOption",
3535
]

src/rra_tools/logging/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
from 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
]

0 commit comments

Comments
 (0)