Skip to content

Commit 0e061cb

Browse files
Merge pull request #38167 from mantidproject/fix_rstcheck
Fix pre-commit PR check
2 parents 5c6ab2a + 33e9900 commit 0e061cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

buildconfig/Jenkins/Conda/conda-pre-commit

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ JOB_TYPE=$3
2727

2828
# Mamba
2929
setup_mamba $SOURCE_DIR/mambaforge "pre-commit"
30-
mamba install --yes pre-commit
30+
# rstcheck fails with exit code -11 with Python 3.13
31+
mamba install --yes pre-commit python=3.12
3132

3233
# Run
3334
$SCRIPT_DIR/pre-commit ${SOURCE_DIR} ${GIT_SHA} ${JOB_TYPE}

dev-docs/source/AlgorithmProfiler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Adding more detailed information
2626
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2727

2828
More detailed information can be added to individual function calls in C++ with the help of ``std::chrono``.
29-
At the top of the fuction create a "start time"
29+
At the top of the function create a "start time"
3030

3131
.. code-block:: c++
3232

0 commit comments

Comments
 (0)