lsst-ctrl-bps-htcondor 29.2025.3700__py3-none-any.whl → 29.2025.3900__py3-none-any.whl

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 (19) hide show
  1. lsst/ctrl/bps/htcondor/__init__.py +1 -0
  2. lsst/ctrl/bps/htcondor/common_utils.py +306 -0
  3. lsst/ctrl/bps/htcondor/htcondor_service.py +12 -2060
  4. lsst/ctrl/bps/htcondor/htcondor_workflow.py +89 -0
  5. lsst/ctrl/bps/htcondor/lssthtc.py +27 -1
  6. lsst/ctrl/bps/htcondor/prepare_utils.py +967 -0
  7. lsst/ctrl/bps/htcondor/provisioner.py +3 -2
  8. lsst/ctrl/bps/htcondor/report_utils.py +842 -0
  9. lsst/ctrl/bps/htcondor/version.py +1 -1
  10. {lsst_ctrl_bps_htcondor-29.2025.3700.dist-info → lsst_ctrl_bps_htcondor-29.2025.3900.dist-info}/METADATA +1 -1
  11. lsst_ctrl_bps_htcondor-29.2025.3900.dist-info/RECORD +23 -0
  12. lsst_ctrl_bps_htcondor-29.2025.3700.dist-info/RECORD +0 -19
  13. {lsst_ctrl_bps_htcondor-29.2025.3700.dist-info → lsst_ctrl_bps_htcondor-29.2025.3900.dist-info}/WHEEL +0 -0
  14. {lsst_ctrl_bps_htcondor-29.2025.3700.dist-info → lsst_ctrl_bps_htcondor-29.2025.3900.dist-info}/licenses/COPYRIGHT +0 -0
  15. {lsst_ctrl_bps_htcondor-29.2025.3700.dist-info → lsst_ctrl_bps_htcondor-29.2025.3900.dist-info}/licenses/LICENSE +0 -0
  16. {lsst_ctrl_bps_htcondor-29.2025.3700.dist-info → lsst_ctrl_bps_htcondor-29.2025.3900.dist-info}/licenses/bsd_license.txt +0 -0
  17. {lsst_ctrl_bps_htcondor-29.2025.3700.dist-info → lsst_ctrl_bps_htcondor-29.2025.3900.dist-info}/licenses/gpl-v3.0.txt +0 -0
  18. {lsst_ctrl_bps_htcondor-29.2025.3700.dist-info → lsst_ctrl_bps_htcondor-29.2025.3900.dist-info}/top_level.txt +0 -0
  19. {lsst_ctrl_bps_htcondor-29.2025.3700.dist-info → lsst_ctrl_bps_htcondor-29.2025.3900.dist-info}/zip-safe +0 -0
@@ -194,8 +194,9 @@ class Provisioner:
194
194
  "getenv": "True",
195
195
  }
196
196
  cmds |= {
197
- stream: str(job.subfile.with_suffix(f".$(Cluster).{stream[:3]}"))
198
- for stream in ("output", "error", "log")
197
+ "output": str(job.subfile.with_suffix(".$(Cluster).out")),
198
+ "error": str(job.subfile.with_suffix(".$(Cluster).out")),
199
+ "log": str(job.subfile.with_suffix(".$(Cluster).log")),
199
200
  }
200
201
  job.add_job_cmds(cmds)
201
202