Skip to content

Commit

Permalink
finish footnote
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakers-the-rat committed Mar 19, 2024
1 parent 713ac6a commit 20f4bef
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 @@ -353,7 +353,7 @@ Code changes over time, bugs are fixed, APIs change, and so it's good to be clea
The most common version specifier is a **lower bound,** allowing any version higher than the specified version.
Ideally you should set this to the lowest version that is still compatible with your package, but in practice for new packages this is often set at the version that was current at the time the package was written[^lowerbound].

[^lowerbound]:
[^lowerbound]: Some packaging tools will do this for you when you add a dependency using their cli interface. For example [`poetry add`](https://python-poetry.org/docs/cli/#add) will add the most recent version with a `^` specifier, and [`pdm add`](https://pdm-project.org/latest/reference/cli/#add) will add the most recent version with `>=`.

Lower bounds look like this:

Expand Down

0 comments on commit 20f4bef

Please sign in to comment.