Skip to content

Commit e9fba75

Browse files
authored
Merge pull request #24 from DiamondLightSource/renameRepo
Establish dodal as primary project name over python-dodal
2 parents 9177695 + 476423d commit e9fba75

File tree

11 files changed

+34
-34
lines changed

11 files changed

+34
-34
lines changed

.github/CONTRIBUTING.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ filing a new one. If you have a great idea but it involves big changes, please
77
file a ticket before making a pull request! We want to make sure you don't spend
88
your time coding something that might not fit the scope of the project.
99

10-
.. _GitHub: https://github.com/DiamondLightSource/python-dodal/issues
10+
.. _GitHub: https://github.com/DiamondLightSource/dodal/issues
1111

1212
Issue or Discussion?
1313
--------------------
@@ -16,7 +16,7 @@ Github also offers discussions_ as a place to ask questions and share ideas. If
1616
your issue is open ended and it is not obvious when it can be "closed", please
1717
raise it as a discussion instead.
1818

19-
.. _discussions: https://github.com/DiamondLightSource/python-dodal/discussions
19+
.. _discussions: https://github.com/DiamondLightSource/dodal/discussions
2020

2121
Code coverage
2222
-------------
@@ -32,4 +32,4 @@ The `Developer Guide`_ contains information on setting up a development
3232
environment, running the tests and what standards the code and documentation
3333
should follow.
3434

35-
.. _Developer Guide: https://diamondlightsource.github.io/python-dodal/main/developer/how-to/contribute.html
35+
.. _Developer Guide: https://diamondlightsource.github.io/dodal/main/developer/how-to/contribute.html

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ COPY --from=build /venv/ /venv/
3333
ENV PATH=/venv/bin:$PATH
3434

3535
# change this entrypoint if it is not the same as the repo
36-
ENTRYPOINT ["python-dodal"]
36+
ENTRYPOINT ["dodal"]
3737
CMD ["--version"]

README.rst

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
python-dodal
1+
dodal
22
============
33

44
|code_ci| |docs_ci| |coverage| |pypi_version| |license|
@@ -7,27 +7,27 @@ python-dodal
77
Ophyd devices and other utils that could be used across DLS beamlines
88

99
============== ==============================================================
10-
PyPI ``pip install python-dodal``
11-
Source code https://github.com/DiamondLightSource/python-dodal
12-
Documentation https://DiamondLightSource.github.io/python-dodal
13-
Releases https://github.com/DiamondLightSource/python-dodal/releases
10+
PyPI ``pip install dodal``
11+
Source code https://github.com/DiamondLightSource/dodal
12+
Documentation https://DiamondLightSource.github.io/dodal
13+
Releases https://github.com/DiamondLightSource/dodal/releases
1414
============== ==============================================================
1515

1616

17-
.. |code_ci| image:: https://github.com/DiamondLightSource/python-dodal/actions/workflows/code.yml/badge.svg?branch=main
18-
:target: https://github.com/DiamondLightSource/python-dodal/actions/workflows/code.yml
17+
.. |code_ci| image:: https://github.com/DiamondLightSource/dodal/actions/workflows/code.yml/badge.svg?branch=main
18+
:target: https://github.com/DiamondLightSource/dodal/actions/workflows/code.yml
1919
:alt: Code CI
2020

21-
.. |docs_ci| image:: https://github.com/DiamondLightSource/python-dodal/actions/workflows/docs.yml/badge.svg?branch=main
22-
:target: https://github.com/DiamondLightSource/python-dodal/actions/workflows/docs.yml
21+
.. |docs_ci| image:: https://github.com/DiamondLightSource/dodal/actions/workflows/docs.yml/badge.svg?branch=main
22+
:target: https://github.com/DiamondLightSource/dodal/actions/workflows/docs.yml
2323
:alt: Docs CI
2424

25-
.. |coverage| image:: https://codecov.io/gh/DiamondLightSource/python-dodal/branch/main/graph/badge.svg
26-
:target: https://codecov.io/gh/DiamondLightSource/python-dodal
25+
.. |coverage| image:: https://codecov.io/gh/DiamondLightSource/dodal/branch/main/graph/badge.svg
26+
:target: https://codecov.io/gh/DiamondLightSource/dodal
2727
:alt: Test Coverage
2828

29-
.. |pypi_version| image:: https://img.shields.io/pypi/v/python-dodal.svg
30-
:target: https://pypi.org/project/python-dodal
29+
.. |pypi_version| image:: https://img.shields.io/pypi/v/dodal.svg
30+
:target: https://pypi.org/project/dodal
3131
:alt: Latest PyPI version
3232

3333
.. |license| image:: https://img.shields.io/badge/License-Apache%202.0-blue.svg
@@ -38,4 +38,4 @@ Releases https://github.com/DiamondLightSource/python-dodal/releases
3838
Anything below this line is used when viewing README.rst and will be replaced
3939
when included in index.rst
4040
41-
See https://DiamondLightSource.github.io/python-dodal for more detailed documentation.
41+
See https://DiamondLightSource.github.io/dodal for more detailed documentation.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# -- General configuration ------------------------------------------------
1616

1717
# General information about the project.
18-
project = "python-dodal"
18+
project = "dodal"
1919

2020
# The full version, including alpha/beta/rc tags.
2121
release = dodal.__version__

docs/developer/how-to/make-release.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ To make a new release, please follow this checklist:
1313
Note that tagging and pushing to the main branch has the same effect except that
1414
you will not get the option to edit the release notes.
1515

16-
.. _release: https://github.com/DiamondLightSource/python-dodal/releases
16+
.. _release: https://github.com/DiamondLightSource/dodal/releases

docs/developer/how-to/move-code.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ In the process of writing code in other DLS repos you may come to realise that i
4848

4949
#. In a different folder clone ``dodal``, remove the origin (for now) to be safe and create a branch::
5050

51-
git clone git@github.com:DiamondLightSource/python-dodal.git
51+
git clone git@github.com:DiamondLightSource/dodal.git
5252
cd dodal
5353
git remote rm origin
5454
git checkout -b add_code_from_artemis
@@ -66,7 +66,7 @@ In the process of writing code in other DLS repos you may come to realise that i
6666
#. Remove the source remote and re-add origin::
6767

6868
git remote rm source
69-
git remote add origin git@github.com:DiamondLightSource/python-dodal.git
69+
git remote add origin git@github.com:DiamondLightSource/dodal.git
7070

7171
#. Tidy up the code so that it fits into the ``dodal`` repo e.g. in the Artemis case we had to change the tests to import from ``artemis`` to import from ``dodal`` and add some more dependencies.
7272

docs/developer/tutorials/dev-install.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Clone the repository
1010
First clone the repository locally using `Git
1111
<https://git-scm.com/downloads>`_::
1212

13-
$ git clone git://github.com/DiamondLightSource/python-dodal.git
13+
$ git clone git://github.com/DiamondLightSource/dodal.git
1414

1515
Install dependencies
1616
--------------------
@@ -25,7 +25,7 @@ requires python 3.8 or later) or to run in a container under `VSCode
2525

2626
.. code::
2727
28-
$ cd python-dodal
28+
$ cd dodal
2929
$ python3 -m venv venv
3030
$ source venv/bin/activate
3131
$ pip install -e .[dev]
@@ -34,7 +34,7 @@ requires python 3.8 or later) or to run in a container under `VSCode
3434

3535
.. code::
3636
37-
$ vscode python-dodal
37+
$ vscode dodal
3838
# Click on 'Reopen in Container' when prompted
3939
# Open a new terminal
4040

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ The documentation is split into 2 sections:
1414
:link: user/index
1515
:link-type: doc
1616

17-
The User Guide contains documentation on how to install and use python-dodal.
17+
The User Guide contains documentation on how to install and use dodal.
1818

1919
.. grid-item-card:: :material-regular:`code;4em`
2020
:link: developer/index
2121
:link-type: doc
2222

23-
The Developer Guide contains documentation on how to develop and contribute changes back to python-dodal.
23+
The Developer Guide contains documentation on how to develop and contribute changes back to dodal.
2424

2525
.. toctree::
2626
:hidden:

docs/user/how-to/run-container.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Run in a container
22
==================
33

4-
Pre-built containers with python-dodal and its dependencies already
4+
Pre-built containers with dodal and its dependencies already
55
installed are available on `Github Container Registry
6-
<https://ghcr.io/DiamondLightSource/python-dodal>`_.
6+
<https://ghcr.io/DiamondLightSource/dodal>`_.
77

88
Starting the container
99
----------------------
1010

1111
To pull the container from github container registry and run::
1212

13-
$ docker run ghcr.io/DiamondLightSource/python-dodal:main --version
13+
$ docker run ghcr.io/DiamondLightSource/dodal:main --version
1414

1515
To get a released version, use a numbered release instead of ``main``.

docs/user/tutorials/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ Installing the library
2525

2626
You can now use ``pip`` to install the library and its dependencies::
2727

28-
$ python3 -m pip install python-dodal
28+
$ python3 -m pip install dodal
2929

3030
If you require a feature that is not currently released you can also install
3131
from github::
3232

33-
$ python3 -m pip install git+https://github.com/DiamondLightSource/python-dodal.git
33+
$ python3 -m pip install git+https://github.com/DiamondLightSource/dodal.git
3434

3535
The library should now be installed and the commandline interface on your path.
3636
You can check the version that has been installed by typing::
3737

38-
$ python-dodal --version
38+
$ dodal --version

0 commit comments

Comments
 (0)