Skip to content

Commit 5298b33

Browse files
committed
adjust links to point to this course/repo
1 parent 089837e commit 5298b33

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/dependencies.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,14 @@ for this course in the {doc}`installation`.
177177

178178
We have used **Miniforge** and the long command we have used was:
179179
```console
180-
$ mamba env create -n course -f https://raw.githubusercontent.com/coderefinery/python-progression/main/software/environment.yml
180+
$ mamba env create -n course -f https://raw.githubusercontent.com/coderefinery/reproducible-python-ml/main/software/environment.yml
181181
```
182182

183183
This command did two things:
184184
- Create a new environment with name "course" (specified by `-n`).
185185
- Installed all dependencies listed in the `environment.yml` file (specified by
186186
`-f`), which we fetched directly from the web.
187-
[Here](https://github.com/coderefinery/python-progression/blob/main/software/environment.yml)
187+
[Here](https://github.com/coderefinery/reproducible-python-ml/blob/main/software/environment.yml)
188188
you can browse it.
189189

190190
For your own projects:
@@ -321,8 +321,8 @@ you realize that you need a new dependency? Or you don't need some dependency an
321321
## Pinning package versions
322322

323323
Let us look at the
324-
[environment.yml](https://github.com/coderefinery/python-progression/blob/main/software/environment.yml)
325-
which we used to set up the environment for this progression course.
324+
[environment.yml](https://github.com/coderefinery/reproducible-python-ml/blob/main/software/environment.yml)
325+
which we used to set up the environment for this course.
326326
Dependencies are listed without version numbers. Should we **pin the
327327
versions**?
328328

0 commit comments

Comments
 (0)