Update Python version and refine Jupyter Notebook formatting

- Bump Python version from 3.11 to 3.13 in .python-version file.
- Reset execution counts to null in Jupyter Notebook for reproducibility.
- Improve code readability by adjusting comments and formatting in the notebook.
- Change the policy definition to use numpy.ndarray for better clarity.
- Modify pyproject.toml to enable E501 rule for line length management.
This commit is contained in:
2026-01-06 11:07:31 +01:00
parent 06bc1f28a9
commit 6eecdd6ab3
3 changed files with 51 additions and 48 deletions

View File

@@ -51,7 +51,7 @@ select = ["ALL"]
# Désactiver certaines règles
ignore = [
# "E501", # line too long, géré par le formatter
"E501", # line too long, géré par le formatter
"E402", # Imports in top of file
"T201", # Print
"N806",