Skip to content

Commit

Permalink
Merge pull request #54 from lsst/tickets/DM-30015
Browse files Browse the repository at this point in the history
DM-30015: Update Sphinx conf.py for documenteer 0.6
  • Loading branch information
timj committed Dec 8, 2021
2 parents a637823 + 7cc8231 commit d27fc4a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
pybind11[global] \
pytest \
pytest-flake8 \
git+https://github.com/lsst/utils@master#egg=lsst_utils
git+https://github.com/lsst/utils@main#egg=lsst_utils
- name: CMake configure
run: |
Expand Down
8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
###
log
###

``log`` is a package in the `LSST Science Pipelines <https://pipelines.lsst.io>`_.

The ``lsst.log`` module provides logging for C++ and Python.
Documentation is available at https://pipelines.lsst.io/modules/lsst.log/index.html.
3 changes: 2 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Sphinx configuration file for an LSST stack package.
This configuration only affects single-package Sphinx documentation builds.
For more information, see:
https://developer.lsst.io/stack/building-single-package-docs.html
"""

from documenteer.conf.pipelinespkg import * # noqa: F403, import *
Expand Down
7 changes: 6 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[flake8]
max-line-length = 110
ignore = E133, E226, E228, N802, N803, N806, W503
exclude = __init__.py
exclude =
bin,
doc/conf.py,
**/*/__init__.py,
**/*/version.py,
tests/.tests

[tool:pytest]
addopts = --flake8
Expand Down

0 comments on commit d27fc4a

Please sign in to comment.