Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ build:
os: ubuntu-24.04
tools:
python: >-
3.12
3.13
apt_packages:
- inkscape
jobs:
Expand Down
4 changes: 2 additions & 2 deletions doc/en/explanation/goodpractices.rst
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ See the :confval:`strict` documentation for the options it enables and their eff
If pytest adds new strictness options in the future, they will also be enabled in strict mode.
Therefore, you should only enable strict mode if you use a pinned/locked version of pytest,
or if you want to proactively adopt new strictness options as they are added.
If you don't want to automatically pick up new options, you can enable options individually::
If you don't want to automatically pick up new options, you can enable options individually:

.. tab:: toml

Expand All @@ -376,7 +376,7 @@ If you don't want to automatically pick up new options, you can enable options i
strict_parametrization_ids = true
strict_xfail = true

If you want to use strict mode but having trouble with a specific option, you can turn it off individually::
If you want to use strict mode but having trouble with a specific option, you can turn it off individually:

.. tab:: toml

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ setenv =
description =
build the documentation site under \
`{toxinidir}{/}doc{/}en{/}_build{/}html` with `{basepython}`
basepython = python3.12 # sync with rtd to get errors
basepython = python3.13 # Sync with .readthedocs.yaml to get errors.
Copy link
Member

Choose a reason for hiding this comment

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

"to get errors"? Is this meant to be "in case you get errors"?

Copy link
Member Author

Choose a reason for hiding this comment

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

I interpret it as "get errors that might occur in RTD locally"

usedevelop = True
deps =
-r{toxinidir}/doc/en/requirements.txt
Expand Down