Skip to content

Commit 0a3fbfa

Browse files
authored
Merge pull request #356 from PyAutoLabs/feature/release-url-sweep-and-tag-pinning
Drop Binder URLs, pin Colab URLs to workspace tag 2026.4.13.6
2 parents afb3ed9 + d539a5b commit 0a3fbfa

10 files changed

Lines changed: 59 additions & 36 deletions

.github/workflows/url_check.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: URL Check
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
jobs:
9+
url_check:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repo
13+
uses: actions/checkout@v4
14+
with:
15+
path: repo
16+
- name: Checkout PyAutoBuild
17+
uses: actions/checkout@v4
18+
with:
19+
repository: PyAutoLabs/PyAutoBuild
20+
ref: main
21+
path: PyAutoBuild
22+
- name: Run url_check.sh
23+
run: bash PyAutoBuild/autobuild/url_check.sh repo

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PyAutoGalaxy: Open-Source Multi Wavelength Galaxy Structure & Morphology
22
========================================================================
33

4-
.. image:: https://mybinder.org/badge_logo.svg
5-
:target: https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/HEAD
4+
.. image:: https://colab.research.google.com/assets/colab-badge.svg
5+
:target: https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/start_here.ipynb
66

77
.. image:: https://readthedocs.org/projects/pyautogalaxy/badge/?version=latest
88
:target: https://pyautogalaxy.readthedocs.io/en/latest/?badge=latest
@@ -34,7 +34,7 @@ PyAutoGalaxy: Open-Source Multi Wavelength Galaxy Structure & Morphology
3434

3535
`Installation Guide <https://pyautogalaxy.readthedocs.io/en/latest/installation/overview.html>`_ |
3636
`readthedocs <https://pyautogalaxy.readthedocs.io/en/latest/index.html>`_ |
37-
`Introduction on Colab <https://colab.research.google.com/github/Jammy2211/autogalaxy_workspace/blob/release/start_here.ipynb>`_
37+
`Introduction on Colab <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/start_here.ipynb>`_
3838
`HowToGalaxy <https://pyautogalaxy.readthedocs.io/en/latest/howtogalaxy/howtogalaxy.html>`_
3939

4040
**PyAutoGalaxy** is software for analysing the morphologies and structures of galaxies:
@@ -54,7 +54,7 @@ The following links are useful for new starters:
5454

5555
- `The PyAutoGalaxy readthedocs <https://pyautogalaxy.readthedocs.io/en/latest>`_, which includes `an overview of PyAutoGalaxy's core features <https://pyautogalaxy.readthedocs.io/en/latest/overview/overview_1_start_here.html>`_, `a new user starting guide <https://pyautogalaxy.readthedocs.io/en/latest/overview/overview_2_new_user_guide.html>`_ and `an installation guide <https://pyautogalaxy.readthedocs.io/en/latest/installation/overview.html>`_.
5656

57-
- `The introduction Jupyter Notebook on Google Colab <https://colab.research.google.com/github/Jammy2211/autogalaxy_workspace/blob/release/start_here.ipynb>`_, where you can try **PyAutoGalaxy** in a web browser (without installation).
57+
- `The introduction Jupyter Notebook on Google Colab <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/start_here.ipynb>`_, where you can try **PyAutoGalaxy** in a web browser (without installation).
5858

5959
- `The autogalaxy_workspace GitHub repository <https://github.com/Jammy2211/autogalaxy_workspace>`_, which includes example scripts and the `HowToGalaxy Jupyter notebook lectures <https://github.com/Jammy2211/autogalaxy_workspace/tree/main/notebooks/howtogalaxy>`_ which give new users a step-by-step introduction to **PyAutoGalaxy**.
6060

docs/howtogalaxy/chapter_1_introduction.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@ Chapter 1: Galaxies
33

44
In chapter 1, we introduce you to galaxy morphology, structure and the core **PyAutoGalaxy** API.
55

6-
**Binder** links to every tutorial are included.
6+
**Colab** links to every tutorial are included.
77

88
The chapter contains the following tutorials:
99

10-
`Tutorial 0: Visualization <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_1_introduction/tutorial_0_visualization.ipynb>`_
10+
`Tutorial 0: Visualization <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_1_introduction/tutorial_0_visualization.ipynb>`_
1111
- Setting up **PyAutoGalaxy**'s visualization library.
1212

13-
`Tutorial 1: Grids And Galaxies <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_1_introduction/tutorial_1_grids_and_galaxies.ipynb>`_
13+
`Tutorial 1: Grids And Galaxies <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_1_introduction/tutorial_1_grids_and_galaxies.ipynb>`_
1414
- Using grids of (y,x) coordinates with galaxies made up of light profiles.
1515

16-
`Tutorial 2: Data <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_1_introduction/tutorial_2_data.ipynb>`_
16+
`Tutorial 2: Data <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_1_introduction/tutorial_2_data.ipynb>`_
1717
- Simulating and inspecting telescope imaging data of a galaxy.
1818

19-
`Tutorial 3: Fitting <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_1_introduction/tutorial_3_fitting.ipynb>`_
19+
`Tutorial 3: Fitting <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_1_introduction/tutorial_3_fitting.ipynb>`_
2020
- Fitting data with a galaxy model.
2121

22-
`Tutorial 4: Methods <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_1_introduction/tutorial_4_methods.ipynb>`_
22+
`Tutorial 4: Methods <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_1_introduction/tutorial_4_methods.ipynb>`_
2323
- An overview of the different methods used to fit galaxies with.
2424

25-
`Tutorial 5: Summary <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_1_introduction/tutorial_5_summary.ipynb>`_
25+
`Tutorial 5: Summary <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_1_introduction/tutorial_5_summary.ipynb>`_
2626
- A summary of the chapter.

docs/howtogalaxy/chapter_2_modeling.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@ In chapter 2, we'll take you through how to model galaxies using a non-linear se
55

66
The chapter contains the following tutorials:
77

8-
`Tutorial 1: Non-linear Search <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_2_modeling/tutorial_1_non_linear_search.ipynb>`_
8+
`Tutorial 1: Non-linear Search <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_2_modeling/tutorial_1_non_linear_search.ipynb>`_
99
- How a non-linear search is used to fit a model and the concepts of a parameter space and priors.
1010

11-
`Tutorial 2: Practicalities <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_2_modeling/tutorial_2_practicalities.ipynb>`_
11+
`Tutorial 2: Practicalities <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_2_modeling/tutorial_2_practicalities.ipynb>`_
1212
- Practicalities of performing model-fitting, like how to inspect the results on your hard-disk.
1313

14-
`Tutorial 3: Realism and Complexity <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_2_modeling/tutorial_3_realism_and_complexity.ipynb>`_
14+
`Tutorial 3: Realism and Complexity <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_2_modeling/tutorial_3_realism_and_complexity.ipynb>`_
1515
- Finding a balance between realism and complexity when composing and fitting a model.
1616

17-
`Tutorial 4: Dealing with Failure <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_2_modeling/tutorial_4_dealing_with_failure.ipynb>`_
17+
`Tutorial 4: Dealing with Failure <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_2_modeling/tutorial_4_dealing_with_failure.ipynb>`_
1818
- What to do when PyAutoGalaxy finds an inaccurate model.
1919

20-
`Tutorial 5: Linear Profiles <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_2_modeling/tutorial_5_linear_profiles.ipynb>`_
20+
`Tutorial 5: Linear Profiles <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_2_modeling/tutorial_5_linear_profiles.ipynb>`_
2121
- Light profiles which capture complex morphologies in a reduced number of non-linear parameters.
2222

23-
`Tutorial 6: Masking <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_2_modeling/tutorial_6_masking.ipynb>`_
23+
`Tutorial 6: Masking <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_2_modeling/tutorial_6_masking.ipynb>`_
2424
- How to mask your data to improve the model.
2525

26-
`Tutorial 7: Results <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_2_modeling/tutorial_7_results.ipynb>`_
26+
`Tutorial 7: Results <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_2_modeling/tutorial_7_results.ipynb>`_
2727
- Overview of the results available after successfully fitting a model.
2828

29-
`Tutorial 8: Need for Speed <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_2_modeling/tutorial_8_need_for_speed.ipynb>`_
29+
`Tutorial 8: Need for Speed <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_2_modeling/tutorial_8_need_for_speed.ipynb>`_
3030
- How to fit complex models whilst balancing efficiency and run-time.
3131

docs/howtogalaxy/chapter_3_search_chaining.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ robust modeling of large galaxy samples.
66

77
The chapter contains the following tutorials:
88

9-
`Tutorial 1: Search Chaining <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_3_search_chaining/tutorial_1_search_chaining.ipynb>`_
9+
`Tutorial 1: Search Chaining <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_3_search_chaining/tutorial_1_search_chaining.ipynb>`_
1010
- Breaking the modeling procedure into a chained sequence of model-fits.
1111

12-
`Tutorial 2: Prior Passing <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_3_search_chaining/tutorial_2_prior_passing.ipynb>`_
12+
`Tutorial 2: Prior Passing <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_3_search_chaining/tutorial_2_prior_passing.ipynb>`_
1313
- How the results of earlier searches are passed to later searches.
1414

15-
`Tutorial 3: x2 Galaxies <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_3_search_chaining/tutorial_3_x2_galaxies.ipynb>`_
15+
`Tutorial 3: x2 Galaxies <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_3_search_chaining/tutorial_3_x2_galaxies.ipynb>`_
1616
- Modeling a dataset with two galaxies using chained searches.

docs/howtogalaxy/chapter_4_pixelizations.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ In chapter 4, we use **Pixelizations** to reconstruct complex galaxies on pixeli
55

66
The chapter contains the following tutorials:
77

8-
`Tutorial 1: Pixelizations <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_4_pixelizations/tutorial_1_pixelizations.ipynb>`_
8+
`Tutorial 1: Pixelizations <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_4_pixelizations/tutorial_1_pixelizations.ipynb>`_
99
- Creating a pixel-grid which will reconstruct a galaxy's light.
1010

11-
`Tutorial 2: Mappers <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_4_pixelizations/tutorial_2_mappers.ipynb>`_
11+
`Tutorial 2: Mappers <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_4_pixelizations/tutorial_2_mappers.ipynb>`_
1212
- How a pixelization maps between the data and pixelization.
1313

14-
`Tutorial 3: Inversions <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_4_pixelizations/tutorial_3_inversions.ipynb>`_
14+
`Tutorial 3: Inversions <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_4_pixelizations/tutorial_3_inversions.ipynb>`_
1515
- Inverting the mappings to reconstruct the galaxy's light.
1616

17-
`Tutorial 4: Bayesian Regularization <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_4_pixelizations/tutorial_4_bayesian_regularization.ipynb>`_
17+
`Tutorial 4: Bayesian Regularization <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_4_pixelizations/tutorial_4_bayesian_regularization.ipynb>`_
1818
- Smoothing the source within a Bayesian framework.
1919

20-
`Tutorial 6: Model Fit <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_4_pixelizations/tutorial_6_model_fit.ipynb>`_
20+
`Tutorial 6: Model Fit <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_4_pixelizations/tutorial_6_model_fit.ipynb>`_
2121
- An example modeling pipeline which uses an inversion.

docs/howtogalaxy/chapter_optional.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ This chapter contains optional tutorials expanding on different aspects of how *
55

66
The chapter contains the following tutorials:
77

8-
`Tutorial: Mass Profiles <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_optional/tutorial_mass_profiles.ipynb>`_
8+
`Tutorial: Mass Profiles <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_optional/tutorial_mass_profiles.ipynb>`_
99
- A description of mass profiles implemented in PyAutoGalaxy, which are currently only used by its child project PyAutoLens.
1010

11-
`Tutorial: Sub-grids <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_optional/tutorial_sub_grids.ipynb>`_
11+
`Tutorial: Sub-grids <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_optional/tutorial_sub_grids.ipynb>`_
1212
- Use sub-grids to perform more accurate and precise calculations.
1313

14-
`Tutorial: Searches <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=notebooks/howtogalaxy/chapter_optional/tutorial_searches.ipynb>`_
14+
`Tutorial: Searches <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/howtogalaxy/chapter_optional/tutorial_searches.ipynb>`_
1515
- Alternative non-linear searches to sample parameter space.
1616

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following links are useful for new starters:
2121

2222
- `The PyAutoGalaxy readthedocs <https://pyautogalaxy.readthedocs.io/en/latest/>`_, which includes `an overview of PyAutoGalaxy's core features <https://pyautogalaxy.readthedocs.io/en/latest/overview/overview_1_start_here.html>`_, `a new user starting guide <https://pyautogalaxy.readthedocs.io/en/latest/overview/overview_2_new_user_guide.html>`_ and `an installation guide <https://pyautogalaxy.readthedocs.io/en/latest/installation/overview.html>`_.
2323

24-
- `The introduction Jupyter Notebook on Binder <https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release?filepath=start_here.ipynb>`_, where you can try **PyAutoGalaxy** in a web browser (without installation).
24+
- `The introduction Jupyter Notebook on Colab <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/start_here.ipynb>`_, where you can try **PyAutoGalaxy** in a web browser (without installation).
2525

2626
- `The autogalaxy_workspace GitHub repository <https://github.com/Jammy2211/autogalaxy_workspace>`_, which includes example scripts and the `HowToGalaxy Jupyter notebook lectures <https://github.com/Jammy2211/autogalaxy_workspace/tree/main/notebooks/howtogalaxy>`_ which give new users a step-by-step introduction to **PyAutoGalaxy**.
2727

docs/overview/overview_2_new_user_guide.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ environment with all the required dependencies already installed.
2929
This is a great way to get started quickly without needing to install **PyAutoGalaxy** on your own machine,
3030
so you can check it is the right software for you before going through the installation process:
3131

32-
- `imaging/start_here.ipynb <https://colab.research.google.com/github/Jammy2211/autogalaxy_workspace/blob/release/notebooks/imaging/start_here.ipynb>`_:
32+
- `imaging/start_here.ipynb <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/imaging/start_here.ipynb>`_:
3333
Galaxy modeling with CCD imaging (e.g. Hubble, James Webb, ground-based telescopes).
3434

35-
- `interferometer/start_here.ipynb <https://colab.research.google.com/github/Jammy2211/autogalaxy_workspace/blob/release/notebooks/interferometer/start_here.ipynb>`_:
35+
- `interferometer/start_here.ipynb <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/interferometer/start_here.ipynb>`_:
3636
Galaxy modeling with interferometer data (e.g. ALMA), fitting directly in the uv-plane.
3737

38-
- `multi_band/start_here.ipynb <https://colab.research.google.com/github/Jammy2211/autogalaxy_workspace/blob/release/notebooks/multi/start_here.ipynb>`_:
38+
- `multi_band/start_here.ipynb <https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/notebooks/multi/start_here.ipynb>`_:
3939
Multi-band galaxy modeling to study colour gradients and wavelength-dependent structure.
4040

4141
Still Unsure?

paper/paper.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ massively parallel model-fitting and an SQLite3 database that allows large suite
7575
queried and analysed. Accompanying `PyAutoGalaxy` is the [autogalaxy workspace](https://github.com/Jammy2211/autogalaxy_workspace),
7676
which includes example scripts, datasets and the `HowToGalaxy` lectures in Jupyter notebook format which introduce
7777
non-experts to studies of galaxy morphology using `PyAutoGalaxy`. Readers can try `PyAutoGalaxy` right now by going
78-
to [the introduction Jupyter notebook on Binder](https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/release) or
78+
to [the introduction Jupyter notebook on Colab](https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/start_here.ipynb) or
7979
checkout the [readthedocs](https://pyautogalaxy.readthedocs.io/en/latest/) for a complete overview of `PyAutoGalaxy`'s
8080
features.
8181

@@ -156,7 +156,7 @@ contains example scripts for modeling and simulating galaxies and tutorials on h
156156
interferometer datasets before a `PyAutoGalaxy` analysis. Also included are the `HowToGalaxy` tutorials, a four-chapter
157157
lecture series composed of over 20 Jupyter notebooks aimed at non-experts, introducing them to galaxy morphology
158158
analysis, Bayesian inference and teaching them how to use `PyAutoGalaxy` for scientific study. The lectures
159-
are available on [Binder](https://mybinder.org/v2/gh/Jammy2211/autogalaxy_workspace/HEAD) and may therefore be
159+
are available on [Colab](https://colab.research.google.com/github/PyAutoLabs/autogalaxy_workspace/blob/2026.4.13.6/start_here.ipynb) and may therefore be
160160
taken without a local `PyAutoGalaxy` installation.
161161

162162
# Software Citations

0 commit comments

Comments
 (0)