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: docs/cookbook.rst
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -117,6 +117,30 @@ Even more so with a sprinkling of Nox:
117
117
Now a simple ``nox -s release -- patch`` will automate your release (provided you have Bump2Version set up to change your files). This is especially powerful if you have a CI/CD pipeline set up!
118
118
119
119
120
+
Using a lockfile
121
+
^^^^^^^^^^^^^^^^
122
+
123
+
If you use a tool like ``uv`` to lock your dependencies, you can use that inside a nox session. Here's an example:
Here we run ``uv sync`` on the nox virtual environment. Other useful flags might include ``--frozen`` (won't touch the lockfile) and ``--inexact`` (will allow you to install other packages as well).
0 commit comments