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

Commit 4c54fd9

Browse files
authored
Merge pull request #27 from DiamondLightSource/dev
Switch Org to DiamondLightSource
2 parents 25cf8c4 + 5a588d7 commit 4c54fd9

File tree

13 files changed

+36
-36
lines changed

13 files changed

+36
-36
lines changed

.github/workflows/code.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
- name: Setup python
2121
uses: actions/setup-python@v4
@@ -48,7 +48,7 @@ jobs:
4848
git config --global user.name "Your Name"
4949
5050
- name: Checkout
51-
uses: actions/checkout@v2
51+
uses: actions/checkout@v3
5252
with:
5353
fetch-depth: 0
5454

@@ -78,7 +78,7 @@ jobs:
7878

7979
steps:
8080
- name: Checkout
81-
uses: actions/checkout@v2
81+
uses: actions/checkout@v3
8282
with:
8383
fetch-depth: 0
8484

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: sudo apt-get install graphviz
3030

3131
- name: checkout
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
with:
3434
fetch-depth: 0
3535

.github/workflows/docs_clean.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: checkout
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222
with:
2323
ref: gh-pages
2424

.github/workflows/linkcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
with:
2121
fetch-depth: 0
2222

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Changelog
22
=========
33

44
The changelog for the skeleton module is the list of `closed pull requests
5-
<https://github.com/epics-containers/python3-pip-skeleton/pulls?q=is%3Apr+is%3Aclosed>`_
5+
<https://github.com/DiamondLightSource/python3-pip-skeleton/pulls?q=is%3Apr+is%3Aclosed>`_
66

77
All developments for the ``skeleton`` branch take place via pull requests, and
88
changes to the commandline tools and docs are not tracked in a changelog.

CONTRIBUTING.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ are two sorts of contributions:
1212
the cli-repo_ with with a PR raised back to the ``main`` branch
1313
here: PR2_
1414

15-
.. _skeleton-repo: https://github.com/epics-containers/python3-pip-skeleton
16-
.. _cli-repo: https://github.com/epics-containers/python3-pip-skeleton-cli
17-
.. _PR: https://github.com/epics-containers/python3-pip-skeleton/pulls
18-
.. _PR2: https://github.com/epics-containers/python3-pip-skeleton-cli/pulls
15+
.. _skeleton-repo: https://github.com/DiamondLightSource/python3-pip-skeleton
16+
.. _cli-repo: https://github.com/DiamondLightSource/python3-pip-skeleton-cli
17+
.. _PR: https://github.com/DiamondLightSource/python3-pip-skeleton/pulls
18+
.. _PR2: https://github.com/DiamondLightSource/python3-pip-skeleton-cli/pulls
1919

2020
Apart from this, ``main`` branch in both repos should always be deployable,
2121
and are considered the latest release.
@@ -32,7 +32,7 @@ To run in a container
3232

3333
Use vscode devcontainer as follows::
3434

35-
$ git clone git://github.com/epics-containers/python3-pip-skeleton.git
35+
$ git clone git://github.com/DiamondLightSource/python3-pip-skeleton.git
3636
$ vscode python3-pip-skeleton
3737
Click on 'Reopen in Container' when prompted
3838
In a vscode Terminal:
@@ -45,7 +45,7 @@ To run locally
4545
Get the source source code and run the unit tests directly
4646
on your workstation as follows::
4747

48-
$ git clone git://github.com/epics-containers/python3-pip-skeleton.git
48+
$ git clone git://github.com/DiamondLightSource/python3-pip-skeleton.git
4949
$ cd python3-pip-skeleton
5050
$ virtualenv .venv
5151
$ source .venv/bin/activate
@@ -152,7 +152,7 @@ When this happens:
152152
Note that tagging and pushing to the main branch has the same effect except that
153153
you will not get the option to edit the release notes.
154154

155-
.. _release: https://github.com/epics-containers/python3-pip-skeleton/releases
155+
.. _release: https://github.com/DiamondLightSource/python3-pip-skeleton/releases
156156

157157

158158
Checking Dependencies

README.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Python projects.
1010

1111
============== ==============================================================
1212
PyPI ``pip install python3-pip-skeleton``
13-
Source code https://github.com/epics-containers/python3-pip-skeleton-cli
14-
Documentation https://epics-containers.github.io/python3-pip-skeleton-cli
15-
Releases https://github.com/epics-containers/python3-pip-skeleton-cli/releases
13+
Source code https://github.com/DiamondLightSource/python3-pip-skeleton-cli
14+
Documentation https://DiamondLightSource.github.io/python3-pip-skeleton-cli
15+
Releases https://github.com/DiamondLightSource/python3-pip-skeleton-cli/releases
1616
============== ==============================================================
1717

1818
It integrates the following tools:
@@ -31,7 +31,7 @@ code that can be merged into new or existing projects, and pulled from to
3131
keep them up to date. It can also serve as a working example for those who
3232
would prefer to cherry-pick.
3333

34-
.. _skeleton: https://github.com/epics-containers/python3-pip-skeleton
34+
.. _skeleton: https://github.com/DiamondLightSource/python3-pip-skeleton
3535

3636
This ``python3-pip-skeleton-cli`` repo contains the
3737
docs and a command line tool to ease the adoption of this skeleton into a
@@ -43,16 +43,16 @@ and existing projects::
4343

4444
python3-pip-skeleton existing /path/to/existing/repo --org my_github_user_or_org
4545

46-
.. |code_ci| image:: https://github.com/epics-containers/python3-pip-skeleton/workflows/Code%20CI/badge.svg?branch=main
47-
:target: https://github.com/epics-containers/python3-pip-skeleton/actions?query=workflow%3A%22Code+CI%22
46+
.. |code_ci| image:: https://github.com/DiamondLightSource/python3-pip-skeleton/workflows/Code%20CI/badge.svg?branch=main
47+
:target: https://github.com/DiamondLightSource/python3-pip-skeleton/actions?query=workflow%3A%22Code+CI%22
4848
:alt: Code CI
4949

50-
.. |docs_ci| image:: https://github.com/epics-containers/python3-pip-skeleton/workflows/Docs%20CI/badge.svg?branch=main
51-
:target: https://github.com/epics-containers/python3-pip-skeleton/actions?query=workflow%3A%22Docs+CI%22
50+
.. |docs_ci| image:: https://github.com/DiamondLightSource/python3-pip-skeleton/workflows/Docs%20CI/badge.svg?branch=main
51+
:target: https://github.com/DiamondLightSource/python3-pip-skeleton/actions?query=workflow%3A%22Docs+CI%22
5252
:alt: Docs CI
5353

54-
.. |coverage| image:: https://codecov.io/gh/epics-containers/python3-pip-skeleton/branch/main/graph/badge.svg
55-
:target: https://codecov.io/gh/epics-containers/python3-pip-skeleton
54+
.. |coverage| image:: https://codecov.io/gh/DiamondLightSource/python3-pip-skeleton/branch/main/graph/badge.svg
55+
:target: https://codecov.io/gh/DiamondLightSource/python3-pip-skeleton
5656
:alt: Test Coverage
5757

5858
.. |pypi_version| image:: https://img.shields.io/pypi/v/python3-pip-skeleton.svg
@@ -67,5 +67,5 @@ and existing projects::
6767
Anything below this line is used when viewing README.rst and will be replaced
6868
when included in index.rst
6969
70-
See https://epics-containers.github.io/python3-pip-skeleton-cli for
70+
See https://DiamondLightSource.github.io/python3-pip-skeleton-cli for
7171
more detailed documentation.

docs/explanations/skeleton.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The python3-pip-skeleton_ repo has a protected main branch and is restricted to
77
rebase PRs only.
88
It is also squashed occasionally so some careful procedures are required.
99

10-
.. _python3-pip-skeleton: https://github.com/epics-containers/python3-pip-skeleton
10+
.. _python3-pip-skeleton: https://github.com/DiamondLightSource/python3-pip-skeleton
1111

1212
main
1313
----

docs/how-to/update.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ structure in an existing repo) some time ago, there may be some changes to the
66
structure that you could pick up. You can optionally check what differences
77
these changes make to the files by doing::
88

9-
$ git fetch https://github.com/epics-containers/python3-pip-skeleton main
9+
$ git fetch https://github.com/DiamondLightSource/python3-pip-skeleton main
1010
$ git diff ...FETCH_HEAD
1111

1212
To merge the changes in do::
1313

14-
$ git pull https://github.com/epics-containers/python3-pip-skeleton main
14+
$ git pull https://github.com/DiamondLightSource/python3-pip-skeleton main

docs/reference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Technical reference material including APIs and release notes.
88
.. toctree::
99
:caption: Reference
1010

11-
Releases <https://github.com/epics-containers/python3-pip-skeleton/releases>
11+
Releases <https://github.com/DiamondLightSource/python3-pip-skeleton/releases>
1212
Index <genindex.html#http://>
1313

1414
..

0 commit comments

Comments
 (0)