Skip to content

Commit

Permalink
Update tutorials/pyproject-toml.md
Browse files Browse the repository at this point in the history
Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
  • Loading branch information
sneakers-the-rat and willingc authored Mar 20, 2024
1 parent 20f4bef commit 6bb0f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/pyproject-toml.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ dependencies = ["numpy>=1.0", "requests==10.1", "pandas", "pydantic>=1.7,<2"]

`numpy == 1.0`.

Unless you are building an application, you want to be cautious about pinning dependencies to precise versions.
If you are building a library package that other developers will depend upon, you must be cautious before pinning to a precise dependency version. Applications, such as production websites, will often pin their dependencies since other packages will not depend on their project.
This is because
users will be installing your package into various environments.
A dependency pinned to a single specific version can make
Expand Down

0 comments on commit 6bb0f9d

Please sign in to comment.