dayhoff-tools 1.9.18__tar.gz → 1.9.19__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.
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/PKG-INFO +1 -1
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/engine/engine_core.py +1 -1
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/engine/engine_maintenance.py +3 -3
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/pyproject.toml +1 -1
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/README.md +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/__init__.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/chemistry/standardizer.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/chemistry/utils.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/__init__.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/cloud_commands.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/engine/__init__.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/engine/engine_lifecycle.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/engine/engine_management.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/engine/shared.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/engine/studio_commands.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/main.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/swarm_commands.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/utility_commands.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/deployment/base.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/deployment/deploy_aws.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/deployment/deploy_gcp.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/deployment/deploy_utils.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/deployment/job_runner.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/deployment/processors.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/deployment/swarm.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/embedders.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/fasta.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/file_ops.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/h5.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/intake/gcp.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/intake/gtdb.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/intake/kegg.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/intake/mmseqs.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/intake/structure.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/intake/uniprot.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/logs.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/sqlite.py +0 -0
- {dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/warehouse.py +0 -0
@@ -514,7 +514,7 @@ def engine_status(
|
|
514
514
|
return f" - {label:15} {status}"
|
515
515
|
|
516
516
|
status_lines.append(_setting_line("Idle Start", "SLACK_NOTIFY_IDLE_START"))
|
517
|
-
status_lines.append(_setting_line("Idle
|
517
|
+
status_lines.append(_setting_line("Idle End", "SLACK_NOTIFY_IDLE_END"))
|
518
518
|
status_lines.append(_setting_line("Warnings", "SLACK_NOTIFY_WARNINGS"))
|
519
519
|
status_lines.append(_setting_line("Shutdown", "SLACK_NOTIFY_SHUTDOWN"))
|
520
520
|
except Exception:
|
{dayhoff_tools-1.9.18 → dayhoff_tools-1.9.19}/dayhoff_tools/cli/engine/engine_maintenance.py
RENAMED
@@ -149,21 +149,21 @@ def idle_timeout_cmd(
|
|
149
149
|
settings = {
|
150
150
|
"SLACK_NOTIFY_WARNINGS": "false",
|
151
151
|
"SLACK_NOTIFY_IDLE_START": "false",
|
152
|
-
"
|
152
|
+
"SLACK_NOTIFY_IDLE_END": "false",
|
153
153
|
"SLACK_NOTIFY_SHUTDOWN": "false",
|
154
154
|
}
|
155
155
|
elif slack == "default":
|
156
156
|
settings = {
|
157
157
|
"SLACK_NOTIFY_WARNINGS": "true",
|
158
158
|
"SLACK_NOTIFY_IDLE_START": "false",
|
159
|
-
"
|
159
|
+
"SLACK_NOTIFY_IDLE_END": "false",
|
160
160
|
"SLACK_NOTIFY_SHUTDOWN": "true",
|
161
161
|
}
|
162
162
|
else: # all
|
163
163
|
settings = {
|
164
164
|
"SLACK_NOTIFY_WARNINGS": "true",
|
165
165
|
"SLACK_NOTIFY_IDLE_START": "true",
|
166
|
-
"
|
166
|
+
"SLACK_NOTIFY_IDLE_END": "true",
|
167
167
|
"SLACK_NOTIFY_SHUTDOWN": "true",
|
168
168
|
}
|
169
169
|
|
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
|
|
5
5
|
|
6
6
|
[project]
|
7
7
|
name = "dayhoff-tools"
|
8
|
-
version = "1.9.
|
8
|
+
version = "1.9.19"
|
9
9
|
description = "Common tools for all the repos at Dayhoff Labs"
|
10
10
|
authors = [
|
11
11
|
{name = "Daniel Martin-Alarcon", email = "dma@dayhofflabs.com"}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|