You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/1-installable-code.md
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,11 @@ environment and shell on your computer.
52
52
You are welcome to use any Python environment manager that you choose.
53
53
If you are using Windows or are not familiar with Shell, you may want to check out the Carpentries shell lesson[^shell-lesson]. Windows users will likely need to configure a tool for any Shell and git related steps.
54
54
55
+
:::{todo}
56
+
When this lesson is published, unlink
55
57
*[If you need guidance creating a Python environment, review this lesson](extras/1-create-environment.md) which walks you through creating an environment using both `venv` and `conda`.
58
+
:::
59
+
56
60
* If you aren't sure which environment manager to use and
57
61
you are a scientist, we suggest that you use `conda`, particularly if you are working with spatial data.
58
62
@@ -292,8 +296,12 @@ For instance, a `build-system` table most often holds two (2) variables:
292
296
2.`build-backend = `, which is used to define the specific build-backend name, (in this example we are using `hatchling.build`).
293
297
294
298
TOML organizes data structures, defining relationships within a configuration
295
-
file. You will learn more about the `pyproject.toml` format in the
299
+
file.
300
+
301
+
:::{todo}
302
+
You will learn more about the `pyproject.toml` format in the
296
303
[next lesson when you add additional metadata / information to this file.](5-pyproject-toml.md)
304
+
:::
297
305
298
306
```toml
299
307
# An example of the build-system table which contains two variables - requires and build-backend
0 commit comments