Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1688,6 +1688,13 @@ will create the following envs:

Negative ranges will also be expanded (``{3-1}`` -> ``{3,2,1}``), however, open ranges such as ``{1-}``, ``{-2}``, ``{a-}``, and ``{-b}`` will not be expanded.

.. caution::

Be conscious of the number of significant digits in your range endpoints.
A range like ``py{39-314}`` will not do what you may expect.
(It expands to 275 environment names,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's gonna bug me that that should've been 276. 🙄

``py39``, ``py40``, ``py41`` … ``py314``.)
Instead, use ``py3{9-14}``.


Generative section names
Expand Down