Skip to content

Commit 0677b53

Browse files
committed
social: migrate from x to bluesky
1 parent 354aac1 commit 0677b53

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
| | |
1313
|------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
1414
| ⚙️ CI | [![ci-manifest](https://github.com/SciTools/iris/actions/workflows/ci-manifest.yml/badge.svg)](https://github.com/SciTools/iris/actions/workflows/ci-manifest.yml) [![ci-tests](https://github.com/SciTools/iris/actions/workflows/ci-tests.yml/badge.svg)](https://github.com/SciTools/iris/actions/workflows/ci-tests.yml) [![ci-wheels](https://github.com/SciTools/iris/actions/workflows/ci-wheels.yml/badge.svg)](https://github.com/SciTools/iris/actions/workflows/ci-wheels.yml) [![pre-commit](https://results.pre-commit.ci/badge/github/SciTools/iris/main.svg)](https://results.pre-commit.ci/latest/github/SciTools/iris/main) |
15-
| 💬 Community | [![Contributor Covenant](https://img.shields.io/badge/contributor%20covenant-2.1-4baaaa.svg)](https://www.contributor-covenant.org/version/2/1/code_of_conduct/) [![GH Discussions](https://img.shields.io/badge/github-discussions%20%F0%9F%92%AC-yellow?logo=github&logoColor=lightgrey)](https://github.com/SciTools/iris/discussions) [![twitter](https://img.shields.io/twitter/follow/scitools_iris?color=yellow&label=twitter%7Cscitools_iris&logo=twitter&style=plastic)](https://twitter.com/scitools_iris) |
15+
| 💬 Community | [![Contributor Covenant](https://img.shields.io/badge/contributor%20covenant-2.1-4baaaa.svg)](https://www.contributor-covenant.org/version/2/1/code_of_conduct/) [![GH Discussions](https://img.shields.io/badge/github-discussions%20%F0%9F%92%AC-yellow?logo=github&logoColor=lightgrey)](https://github.com/SciTools/iris/discussions) [![bluesky](https://img.shields.io/badge/scitools-0285FF?label=bluesky&logo=bluesky&logoColor=0285FF)](https://bsky.app/profile/scitools.bsky.social) |
1616
| 📖 Documentation | [![rtd](https://readthedocs.org/projects/scitools-iris/badge/?version=latest)](https://scitools-iris.readthedocs.io/en/latest/?badge=latest) |
1717
| 📈 Health | [![codecov](https://codecov.io/gh/SciTools/iris/branch/main/graph/badge.svg?token=0GeICSIF3g)](https://codecov.io/gh/SciTools/iris) |
1818
| ✨ Meta | [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) [![NEP29](https://raster.shields.io/badge/follows-NEP29-orange.png)](https://numpy.org/neps/nep-0029-deprecation_policy.html) [![license - bds-3-clause](https://img.shields.io/github/license/SciTools/iris)](https://github.com/SciTools/iris/blob/main/LICENSE) [![conda platform](https://img.shields.io/conda/pn/conda-forge/iris.svg)](https://anaconda.org/conda-forge/iris) |

docs/src/community/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Quick Links
2525

2626
* `GitHub Discussions`_
2727
* :ref:`Getting involved<development_where_to_start>`
28-
* `Twitter <https://twitter.com/scitools_iris>`_
28+
* `Bluesky <https://bsky.app/profile/scitools.bsky.social>`_
2929

3030
Interoperability
3131
----------------

docs/src/conf.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,13 @@ def _dotv(version):
316316
# TODO: review if 6 links is too crowded.
317317
"header_links_before_dropdown": 6,
318318
"github_url": "https://github.com/SciTools/iris",
319-
"twitter_url": "https://twitter.com/scitools_iris",
320319
# icons available: https://fontawesome.com/v5.15/icons?d=gallery&m=free
321320
"icon_links": [
321+
{
322+
"name": "Bluesky",
323+
"url": "https://bsky.app/profile/scitools.bsky.social",
324+
"icon": "fa-brands fa-bluesky",
325+
},
322326
{
323327
"name": "GitHub Discussions",
324328
"url": "https://github.com/SciTools/iris/discussions",

docs/src/developers_guide/release.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ conda package on the `conda-forge Anaconda channel`_.
180180
Announcement
181181
~~~~~~~~~~~~
182182

183-
Iris uses Twitter (`@scitools_iris`_) to announce new releases, as well as any
183+
Iris uses Bluesky (`@scitools.bsky.social`_) to announce new releases, as well as any
184184
internal message boards that are accessible (e.g. at the UK Met Office).
185185
Announcements usually include a highlighted feature to hook readers' attention.
186186

@@ -284,6 +284,6 @@ For further details on how to test Iris, see :ref:`developer_running_tests`.
284284
.. _setuptools-scm: https://github.com/pypa/setuptools_scm
285285
.. _Semantic Versioning: https://semver.org/
286286
.. _PEP 440: https://peps.python.org/pep-0440/
287-
.. _@scitools_iris: https://twitter.com/scitools_iris
287+
.. _@scitools.bsky.social: https://bsky.app/profile/scitools.bsky.social
288288
.. _GitHub Projects: https://github.com/SciTools/iris/projects
289289
.. _Zenodo DOI: https://doi.org/10.5281/zenodo.595182

tools/release_do_nothing.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def get_steps(cls) -> list[typing.Callable[..., None]]:
5858
cls.check_pypi,
5959
cls.update_conda_forge,
6060
cls.update_links,
61-
cls.twitter_announce,
61+
cls.bluesky_announce,
6262
cls.merge_back,
6363
]
6464

@@ -845,13 +845,13 @@ def update_links(self):
845845
)
846846
self.wait_for_done(message)
847847

848-
def twitter_announce(self):
848+
def bluesky_announce(self):
849849
message = (
850-
"Announce the release via https://twitter.com/scitools_iris, "
850+
"Announce the release via https://bsky.app/profile/scitools.bsky.social, "
851851
"and any "
852852
"other appropriate message boards (e.g. Viva Engage).\n"
853853
"Any content used for the announcement should be stored in the "
854-
"SciTools/twitter-scitools-iris GitHub repo.\n"
854+
"SciTools/bluesky-scitools GitHub repo.\n"
855855
)
856856
if not self.first_in_series:
857857
message += (

0 commit comments

Comments
 (0)