Skip to content

Commit db1677f

Browse files
authored
Fix broken links to stable (#377)
2 parents 515d2f6 + 4e384d4 commit db1677f

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
 
1717
<a href="https://emdgroup.github.io/baybe/">Homepage<a/>
1818
&nbsp;&nbsp;
19-
<a href="https://emdgroup.github.io/baybe/userguide/userguide.html">User Guide<a/>
19+
<a href="https://emdgroup.github.io/baybe/stable/userguide/userguide.html">User Guide<a/>
2020
&nbsp;&nbsp;
21-
<a href="https://emdgroup.github.io/baybe/_autosummary/baybe.html">Documentation<a/>
21+
<a href="https://emdgroup.github.io/baybe/stable/_autosummary/baybe.html">Documentation<a/>
2222
&nbsp;&nbsp;
23-
<a href="https://emdgroup.github.io/baybe/misc/contributing_link.html">Contribute<a/>
23+
<a href="https://emdgroup.github.io/baybe/stable/misc/contributing_link.html">Contribute<a/>
2424
&nbsp;
2525
</div>
2626

@@ -75,7 +75,7 @@ In cases where we are confronted with multiple (potentially conflicting) targets
7575
the `DesirabilityObjective` can be used instead. It allows to define additional
7676
settings, such as how these targets should be balanced.
7777
For more details, see the
78-
[objectives section](https://emdgroup.github.io/baybe/userguide/objectives.html)
78+
[objectives section](https://emdgroup.github.io/baybe/stable/userguide/objectives.html)
7979
of the user guide.
8080

8181
### Defining the Search Space
@@ -119,12 +119,12 @@ parameters = [
119119
```
120120

121121
For more parameter types and their details, see the
122-
[parameters section](https://emdgroup.github.io/baybe/userguide/parameters.html)
122+
[parameters section](https://emdgroup.github.io/baybe/stable/userguide/parameters.html)
123123
of the user guide.
124124

125125
Additionally, we can define a set of constraints to further specify allowed ranges and
126126
relationships between our parameters. Details can be found in the
127-
[constraints section](https://emdgroup.github.io/baybe/userguide/constraints.html) of the user guide.
127+
[constraints section](https://emdgroup.github.io/baybe/stable/userguide/constraints.html) of the user guide.
128128
In this example, we assume no further constraints.
129129

130130
With the parameter definitions at hand, we can now create our
@@ -136,7 +136,7 @@ from baybe.searchspace import SearchSpace
136136
searchspace = SearchSpace.from_product(parameters)
137137
```
138138

139-
See the [search spaces section](https://emdgroup.github.io/baybe/userguide/searchspace.html)
139+
See the [search spaces section](https://emdgroup.github.io/baybe/stable/userguide/searchspace.html)
140140
of our user guide for more information on the structure of search spaces
141141
and alternative ways of construction.
142142

@@ -154,7 +154,7 @@ For our example, we combine two recommenders via a so-called meta recommender na
154154

155155
For more details on the different recommenders, their underlying algorithmic
156156
details, and their configuration settings, see the
157-
[recommenders section](https://emdgroup.github.io/baybe/userguide/recommenders.html)
157+
[recommenders section](https://emdgroup.github.io/baybe/stable/userguide/recommenders.html)
158158
of the user guide.
159159

160160
```python
@@ -296,7 +296,7 @@ The available groups are:
296296
- `mypy`: Required for static type checking.
297297
- `onnx`: Required for using custom surrogate models in [ONNX format](https://onnx.ai).
298298
- `polars`: Required for optimized search space construction via [Polars](https://docs.pola.rs/)
299-
- `simulation`: Enabling the [simulation](https://emdgroup.github.io/baybe/_autosummary/baybe.simulation.html) module.
299+
- `simulation`: Enabling the [simulation](https://emdgroup.github.io/baybe/stable/_autosummary/baybe.simulation.html) module.
300300
- `test`: Required for running the tests.
301301
- `dev`: All of the above plus `tox` and `pip-audit`. For code contributors.
302302

@@ -311,7 +311,7 @@ host machine names are anonymized with via truncated hashing.
311311
`telemetry` module.
312312
- You can always deactivate all telemetry by setting the environment variable
313313
`BAYBE_TELEMETRY_ENABLED` to `false` or `off`. For details please consult
314-
[this page](https://emdgroup.github.io/baybe/userguide/envvars.html#telemetry).
314+
[this page](https://emdgroup.github.io/baybe/stable/userguide/envvars.html#telemetry).
315315
- If you want to be absolutely sure, you can uninstall internet related packages such
316316
as `opentelemetry*` or its secondary dependencies from the environment. Due to the
317317
inability of specifying opt-out dependencies, these are installed by default, but the
@@ -325,7 +325,7 @@ host machine names are anonymized with via truncated hashing.
325325

326326

327327
## 🛠️ Known Issues
328-
A list of know issues can be found [here](https://emdgroup.github.io/baybe/known_issues.html).
328+
A list of know issues can be found [here](https://emdgroup.github.io/baybe/stable/known_issues.html).
329329

330330

331331
## 📄 License

baybe/telemetry.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Telemetry functionality for BayBE.
22
3-
For more details, see https://emdgroup.github.io/baybe/userguide/envvars.html#telemetry
3+
For more details, see https://emdgroup.github.io/baybe/stable/userguide/envvars.html#telemetry
44
"""
55

66
import getpass

0 commit comments

Comments
 (0)