Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-38065: v25 release notes on main #133

Merged
merged 3 commits into from
Mar 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/build_docs.yaml
@@ -0,0 +1,42 @@
name: docs

on:
push:
branches:
- main
pull_request:

jobs:
build_sphinx_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# Need to clone everything for the git tags.
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
cache: "pip"
cache-dependency-path: "setup.cfg"

- name: Update pip/wheel infrastructure
run: |
python -m pip install --upgrade pip
pip install wheel

- name: Install dependencies
run: |
pip install -r requirements.txt

- name: Build and install
run: pip install --no-deps -v .

- name: Install documenteer
run: pip install 'documenteer[pipelines]<0.8'

- name: Build documentation
working-directory: ./doc
run: package-docs build
1 change: 0 additions & 1 deletion doc/changes/DM-34959.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion doc/changes/DM-35293.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion doc/changes/DM-35313.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion doc/changes/DM-37044.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion doc/changes/DM-37106.bugfix.rst

This file was deleted.

23 changes: 23 additions & 0 deletions doc/lsst.ctrl.bps/CHANGES.rst
@@ -1,3 +1,26 @@
lsst-ctrl-bps v25.0.0 (2023-03-01)
==================================

New Features
------------

- Make ``report()`` look for job summary before trying to compile necessary data based on the information for individual jobs. (`DM-35293 <https://jira.lsstcorp.org/browse/DM-35293>`_)
- Add ability to specify ``computeSite`` via the command line. (`DM-37044 <https://jira.lsstcorp.org/browse/DM-37044>`_)


Bug Fixes
---------

- Fix the bug causing submissions to fail when the config defines site-specific job attributes. (`DM-35313 <https://jira.lsstcorp.org/browse/DM-35313>`_)
- Remove BPS computeSite option from all subcommands except ``submit``. (`DM-37106 <https://jira.lsstcorp.org/browse/DM-37106>`_)


Other Changes and Additions
---------------------------

- Replace NetworkX functions that are being deprecated. (`DM-34959 <https://jira.lsstcorp.org/browse/DM-34959>`_)


lsst-ctrl-bps v24.0.0 (2022-08-29)
==================================

Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ctrl/bps/bps_reports.py
Expand Up @@ -106,7 +106,7 @@ def from_table(cls, table):

Returns
-------
inst : `lsst.ctrl.bps.report.BaseRunReport
inst : `lsst.ctrl.bps.report.BaseRunReport`
A report created based on the information in the provided table.
"""
inst = cls(table.dtype.descr)
Expand Down