Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit bf37f63

Browse files
committed
Merge branch 'skeleton'
2 parents f388790 + 7f9d1af commit bf37f63

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
with:
2929
pipenv-run: docs
3030

31+
- name: Check links resolve
32+
run: pipenv run docs -b linkcheck
33+
3134
- name: Move to versioned directory
3235
# e.g. master or 0.1.2
3336
run: mv build/html ".github/pages/${GITHUB_REF##*/}"

CONTRIBUTING.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ commit`` on just the files that have changed::
4545
$ pipenv run pre-commit install
4646

4747
.. _black: https://github.com/psf/black
48-
.. _flake8: http://flake8.pycqa.org/en/latest/
49-
.. _isort: https://github.com/timothycrosley/isort
48+
.. _flake8: https://flake8.pycqa.org/en/latest/
49+
.. _isort: https://github.com/PyCQA/isort
5050
.. _mypy: https://github.com/python/mypy
5151
.. _pre-commit: https://pre-commit.com/
5252

@@ -104,7 +104,7 @@ When this happens:
104104
- Push to internal gitlab and do a dls-release.py of the tag
105105
- Check and edit for clarity the autogenerated GitHub release_
106106

107-
.. _release: https://dls-controls.github.io/dls-python3-skeleton/releases
107+
.. _release: https://github.com/dls-controls/dls-python3-skeleton/releases
108108

109109
Apart from this, ``master`` and ``skeleton`` should always be deployable,
110110
and are considered the latest release.

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ classifiers =
1717
[options]
1818
python_requires = >=3.7
1919
packages = find:
20+
# =src is interpreted as {"": "src"}
21+
# as per recommendation here https://hynek.me/articles/testing-packaging/
2022
package_dir =
2123
=src
24+
2225
# Specify any package dependencies below.
2326
# install_requires =
2427
# numpy

0 commit comments

Comments
 (0)