Skip to content

Commit 02e511d

Browse files
lwasserwillingc
andauthored
Apply suggestion from @willingc
Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
1 parent 6a70951 commit 02e511d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package-structure-code/declare-dependencies.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ within the code of your project or used during the development of your package.
3333

3434
### Why you specify dependencies
3535

36-
Specifying dependencies in your `pyproject.toml` file ensures that your package works correctly.
37-
Users automatically get the packages your code needs to run. For instance, if your package requires Pandas to run properly, Pandas will be installed into the users' environment when they install your package using uv, pip or conda, if you specify it as a dependency in your pyproject.toml file.
36+
Specifying dependencies in your `pyproject.toml` file ensures that libraries needed to run your package are correctly installed.
37+
Users automatically get the packages your code needs to run. For instance, if your package requires Pandas to run properly, Pandas will be installed into the users' environment when they install your package using uv, pip or conda, if you specify it as a dependency in your `pyproject.toml` file.
3838

3939
:::{tip}
4040
You can control which versions of dependencies are compatible with your package using specifiers. You will learn more about dependency specifiers in the sections below.

0 commit comments

Comments
 (0)