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: 0 additions & 2 deletions Framework/Algorithms/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ set(SRC_FILES
src/RebinRagged2.cpp
src/RebinToWorkspace.cpp
src/Rebunch.cpp
src/RecordPythonScript.cpp
src/Regroup.cpp
src/RemoveBackground.cpp
src/RemoveBins.cpp
Expand Down Expand Up @@ -618,7 +617,6 @@ set(INC_FILES
inc/MantidAlgorithms/RebinRagged2.h
inc/MantidAlgorithms/RebinToWorkspace.h
inc/MantidAlgorithms/Rebunch.h
inc/MantidAlgorithms/RecordPythonScript.h
inc/MantidAlgorithms/Regroup.h
inc/MantidAlgorithms/RemoveBackground.h
inc/MantidAlgorithms/RemoveBins.h
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class MANTID_ALGORITHMS_DLL GenerateIPythonNotebook final : public API::Algorith

/// Algorithm's version for identification
int version() const override { return 1; };
const std::vector<std::string> seeAlso() const override { return {"RecordPythonScript", "GeneratePythonScript"}; }
const std::vector<std::string> seeAlso() const override { return {"GeneratePythonScript"}; }
/// Algorithm's category for identification
const std::string category() const override { return "Utility\\Python"; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class MANTID_ALGORITHMS_DLL GeneratePythonScript : public API::Algorithm {

/// Algorithm's version for identification
int version() const override { return 1; };
const std::vector<std::string> seeAlso() const override { return {"RecordPythonScript", "GenerateIPythonNotebook"}; }
const std::vector<std::string> seeAlso() const override { return {"GenerateIPythonNotebook"}; }
/// Algorithm's category for identification
const std::string category() const override { return "Utility\\Python"; }

Expand Down
62 changes: 0 additions & 62 deletions Framework/Algorithms/inc/MantidAlgorithms/RecordPythonScript.h

This file was deleted.

103 changes: 0 additions & 103 deletions Framework/Algorithms/src/RecordPythonScript.cpp

This file was deleted.

1 change: 0 additions & 1 deletion buildconfig/CMake/CppCheck_Suppressions.txt.in
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ missingOverride:${CMAKE_SOURCE_DIR}/Framework/Algorithms/inc/MantidAlgorithms/PD
uninitMemberVarPrivate:${CMAKE_SOURCE_DIR}/Framework/Algorithms/inc/MantidAlgorithms/NormaliseToMonitor.h:114
constVariableReference:${CMAKE_SOURCE_DIR}/Framework/Algorithms/src/MergeRuns.cpp:292
constVariableReference:${CMAKE_SOURCE_DIR}/Framework/Algorithms/src/MergeRuns.cpp:679
constVariableReference:${CMAKE_SOURCE_DIR}/Framework/Algorithms/src/RecordPythonScript.cpp:83
knownConditionTrueFalse:${CMAKE_SOURCE_DIR}/Framework/Algorithms/src/PaalmanPingsAbsorptionCorrection.cpp:452
constParameterReference:${CMAKE_SOURCE_DIR}/Framework/Algorithms/src/PolarizationCorrectionFredrikze.cpp:138
constParameterReference:${CMAKE_SOURCE_DIR}/Framework/Algorithms/src/PolarizationCorrectionFredrikze.cpp:155
Expand Down
78 changes: 0 additions & 78 deletions docs/source/algorithms/RecordPythonScript-v1.rst

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- The RecordPythonScript algorithm was deprecated in :ref:`Release 5.1.0 <v5.1.0>` and has now been removed. Use :ref:`GeneratePythonScript<algm-generatepythonscript>` instead.
Loading