Skip to content

Commit

Permalink
Replaced dls-controls with bluesky
Browse files Browse the repository at this point in the history
  • Loading branch information
garryod committed Jul 12, 2024
1 parent ea74171 commit 556fe6a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<img src="https://raw.githubusercontent.com/dls-controls/scanspec/main/docs/images/scanspec-logo.svg"
<img src="https://raw.githubusercontent.com/bluesky/scanspec/main/docs/images/scanspec-logo.svg"
style="background: none" width="120px" height="120px" align="right">

[![CI](https://github.com/dls-controls/scanspec/actions/workflows/ci.yml/badge.svg)](https://github.com/dls-controls/scanspec/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/gh/dls-controls/scanspec/branch/main/graph/badge.svg)](https://codecov.io/gh/dls-controls/scanspec)
[![CI](https://github.com/bluesky/scanspec/actions/workflows/ci.yml/badge.svg)](https://github.com/bluesky/scanspec/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/gh/bluesky/scanspec/branch/main/graph/badge.svg)](https://codecov.io/gh/bluesky/scanspec)
[![PyPI](https://img.shields.io/pypi/v/scanspec.svg)](https://pypi.org/project/scanspec)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Expand All @@ -20,11 +20,11 @@ can be produced and expanded Paths created to consume chunk by chunk.

[cycler]: https://matplotlib.org/cycler/

Source | <https://github.com/dls-controls/scanspec>
Source | <https://github.com/bluesky/scanspec>
:---: | :---:
PyPI | `pip install scanspec`
Documentation | <https://dls-controls.github.io/scanspec>
Releases | <https://github.com/dls-controls/scanspec/releases>
Documentation | <https://bluesky.github.io/scanspec>
Releases | <https://github.com/bluesky/scanspec/releases>

An example ScanSpec of a 2D snaked grid flyscan inside a circle spending 0.4s at
each point:
Expand Down Expand Up @@ -69,6 +69,6 @@ chunk.upper # bounds are same dimensionality as positions

<!-- README only content. Anything below this line won't be included in index.md -->

See https://dls-controls.github.io/scanspec for more detailed documentation.
See https://bluesky.github.io/scanspec for more detailed documentation.

[plot]: https://raw.githubusercontent.com/dls-controls/scanspec/master/docs/images/plot_spec.png
[plot]: https://raw.githubusercontent.com/bluesky/scanspec/master/docs/images/plot_spec.png
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
#
html_theme = "pydata_sphinx_theme"
github_repo = "scanspec"
github_user = "dls-controls"
github_user = "bluesky"
switcher_json = f"https://{github_user}.github.io/{github_repo}/switcher.json"
switcher_exists = requests.get(switcher_json).ok
if not switcher_exists:
Expand Down
4 changes: 2 additions & 2 deletions docs/how-to/run-container.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Run in a container

Pre-built containers with scanspec and its dependencies already
installed are available on [Github Container Registry](https://ghcr.io/dls-controls/scanspec).
installed are available on [Github Container Registry](https://ghcr.io/bluesky/scanspec).

## Starting the container

To pull the container from github container registry and run:

```
$ docker run ghcr.io/dls-controls/scanspec:main --version
$ docker run ghcr.io/bluesky/scanspec:main --version
```

To get a released version, use a numbered release instead of `main`.
2 changes: 1 addition & 1 deletion docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ Technical reference material including APIs and release notes.
reference/*
genindex
Release Notes <https://github.com/dls-controls/scanspec/releases>
Release Notes <https://github.com/bluesky/scanspec/releases>
```
2 changes: 1 addition & 1 deletion docs/reference/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ from code:
.. data:: scanspec.__version__
:type: str
Version number as calculated by https://github.com/dls-controls/versiongit
Version number as calculated by https://github.com/bluesky/versiongit
```

```{eval-rst}
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ If you require a feature that is not currently released you can also install
from github:

```
$ python3 -m pip install git+https://github.com/dls-controls/scanspec.git
$ python3 -m pip install git+https://github.com/bluesky/scanspec.git
```

If you need to do any plotting (recommended), you should install the `plotting` extra:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dev = [
scanspec = "scanspec.cli:cli"

[project.urls]
GitHub = "https://github.com/dls-controls/scanspec"
GitHub = "https://github.com/bluesky/scanspec"

[[project.authors]] # Further authors may be added by duplicating this section
email = "tom.cobb@diamond.ac.uk"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ def test_multiple_duration_frames():
AssertionError, match=re.escape("Zipping would overwrite axes ['DURATION']")
):
spec.calculate()
spec = ( # TODO: refactor when https://github.com/dls-controls/scanspec/issues/90
spec = ( # TODO: refactor when https://github.com/bluesky/scanspec/issues/90
Static.duration(0.1) * Line.bounded(DURATION, 0, 0, 2)
)
frames = spec.calculate()
Expand Down

0 comments on commit 556fe6a

Please sign in to comment.