From 308d1023c42c144f3abc02b3366fc830383ea330 Mon Sep 17 00:00:00 2001 From: Tim Mensinger Date: Tue, 1 Oct 2024 16:12:17 +0200 Subject: [PATCH] Update docs --- .../source/getting_started/preparing_your_system.md | 10 +++------- inst/WORDLIST | 1 + pyproject.toml | 3 +++ 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs_template/source/getting_started/preparing_your_system.md b/docs_template/source/getting_started/preparing_your_system.md index ee6512b8..832a295e 100644 --- a/docs_template/source/getting_started/preparing_your_system.md +++ b/docs_template/source/getting_started/preparing_your_system.md @@ -3,14 +3,10 @@ Make sure you have the following programs installed and that these can be found on your path. This template requires -- [Miniconda](https://docs.conda.io/en/latest/miniconda.html) or - [Micromamba](https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html) or - Anaconda. Windows users: please consult {ref}`windows_user` +- Python, which you must install using the installation instructions + [here](https://effective-programming-practices.vercel.app/python_installation_execution/index.html). - ```{note} This template is tested with python 3.12 and higher and conda 24.5 - ``` - -- a modern LaTeX distribution (e.g. [TeXLive](https://tug.org/texlive/), +- A modern LaTeX distribution (e.g. [TeXLive](https://tug.org/texlive/), [MacTex](https://tug.org/mactex/), or [MikTex](https://miktex.org/)) - [Git](https://git-scm.com/downloads), Windows users please also consult diff --git a/inst/WORDLIST b/inst/WORDLIST index 361262bd..2f974536 100644 --- a/inst/WORDLIST +++ b/inst/WORDLIST @@ -1110,6 +1110,7 @@ iR IrqM Irt iS +ISC iSL isort iT diff --git a/pyproject.toml b/pyproject.toml index 4c159146..279c70e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,6 +90,9 @@ extend-ignore = [ "D104", # Missing docstring in public package (__init__.py files) "S301", # pickle module is unsafe "PLR0913", # Too many arguments in function definition + # ignore because conflict with ruff-format + "COM812", + "ISC001", ] [tool.ruff.lint.per-file-ignores]