Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

mantidproject/mantid

robertapplin created a review comment on a pull request on mantidproject/mantid
I believe this `fixPhasesTest` is never run because only `runTest` is run in a system test. I decided it was out of scope for the PR to try fix it

View on GitHub

robertapplin created a review on a pull request on mantidproject/mantid

View on GitHub

robertapplin created a review comment on a pull request on mantidproject/mantid
I do not!

View on GitHub

robertapplin created a review on a pull request on mantidproject/mantid

View on GitHub

SilkeSchomann opened a draft pull request on mantidproject/mantid
Fix for DNS Reduction interface not opening (2)
### Description of work #### Summary of work The DNS Reduction interface did not open as the import for the interface failed. I have added a __init__.py file to the directory qt/python/mantidqt...
robertapplin created a review comment on a pull request on mantidproject/mantid
In this test it uses the `AlgorithmManager` to create an algorithm object such as the `CreateWorkspace` algorithm. It seems the AlgorithmManager cannot find an algorithm called `CreateWorkspace` be...

View on GitHub

robertapplin created a review on a pull request on mantidproject/mantid

View on GitHub

SilkeSchomann created a branch on mantidproject/mantid

fix_another_missing_init_file - Main repository for Mantid code

jhaigh0 created a review comment on a pull request on mantidproject/mantid
Do you know how this was working before?

View on GitHub

jhaigh0 created a review comment on a pull request on mantidproject/mantid
Same with this... was this working before?

View on GitHub

jhaigh0 created a review comment on a pull request on mantidproject/mantid
Do you know what's going on here? Where does `SCons` come from?

View on GitHub

jhaigh0 created a review on a pull request on mantidproject/mantid
Just had a few questions but otherwise looks good

View on GitHub

jhaigh0 created a review on a pull request on mantidproject/mantid
Just had a few questions but otherwise looks good

View on GitHub

rbauststfc opened an issue on mantidproject/mantid
Add output spin state to sample log in PolarizationCorrectionFredrikze
Part of #36685. _**Issue #38264 is equivalent to this and should be done first.**_ It would be good to optionally add the spin state to the sample log for the output workspaces in `Polarizati...
rbauststfc opened an issue on mantidproject/mantid
Add output spin state to sample log in PolarizationCorrectionWildes
Part of #36685. It would be good to optionally add the spin state to the sample log for the output workspaces in `PolarizationCorrectionWildes`. This will provide a reliable way of identifying t...
rbauststfc opened an issue on mantidproject/mantid
Fix coverity issue in FindReflectometryLines
We've had the following coverity issue reported for the `FindReflectometryLines` algorithm: > ** CID 1563364: Performance inefficiencies (COPY_INSTEAD_OF_MOVE) > /jenkins_workdir/workspace/co...
mantid-builder created a tag on mantidproject/mantid

v6.10.20241021.1917 - Main repository for Mantid code

mantid-builder published a release on mantidproject/mantid
Nightly v6.10.20241021.1917
Nightly build. Use with caution. Not recommended for production use.
mantid-builder pushed 2 commits to main mantidproject/mantid
  • Merge pull request #38262 from rosswhitfield/ExtractMaskDonor Add UngroupDetectors to ExtractMask 2a139a0
  • Merge ornl-next into main 84d4a52

View on GitHub

rosswhitfield pushed 5 commits to ornl-next mantidproject/mantid
  • Add donor to ExtractMask 2a0ddd8
  • Add test and docs 52d0219
  • Add release note 4405f95
  • Move to UngroupDetectors option 76f1984
  • Merge pull request #38262 from rosswhitfield/ExtractMaskDonor Add UngroupDetectors to ExtractMask 2a139a0

View on GitHub

rosswhitfield closed a pull request on mantidproject/mantid
Add UngroupDetectors to ExtractMask
Get #38198 into ornl-next
pre-commit-ci[bot] pushed 1 commit to pre-commit-ci-update-config mantidproject/mantid
  • [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci e79de27

View on GitHub

pre-commit-ci[bot] pushed 256 commits to pre-commit-ci-update-config mantidproject/mantid
  • Refactor into smaller functions 61d3b9a
  • new signal/slot syntax changed on QENSFitting 7c18f56
  • update signals/slots in processor and corrections interfaces a981cb6
  • new signal/slots on bayes fitting interface 0d97aa2
  • QComboBox::currentIndexChanged(QString &) was found to be deprecated, it is changed to QComboBox::currentIndexChanged... 19029db
  • Use pathlib.Path to represent file paths in Sphinx From Sphinx 9 onwards it will not be possible to use a string to ... 1271dd4
  • Remove use of deprecated tags.tags From Sphinx 9 onwards tags.tags will be removed. 6821151
  • Revert uses of relative_to() to os.path.relpath pathlib.Path.relative_to() apparently will not traverse the file hie... c35f82c
  • Fix name in categories directive The name can contain backslashes that need converting to posix format before going ... 80da950
  • Add outputs of running release_editor.py Ran release_editor.py script and commited the resulting changes 81eaa20
  • Edit diffraction.rst 2a36f9d
  • Edit direct_geometry.rst 3243e92
  • Edit framework.rst e6fd963
  • Correct table formatting under Menu Bar section b3ebc1a
  • Add algorithm refs to Columns table d491ff5
  • Fix typos and update use of old column name e3a90a3
  • Add explanation of search results Export button ff54571
  • Update screenshots in ISIS Reflectometry interface docs 30dadbb
  • Update ISIS Reflectometry technique docs 5839de8
  • Use PurePosixPath instead of Path where appropriate Sphinx wants us to use pathlib.Path to represent filesystem path... 9261945
  • and 236 more ...

View on GitHub

rosswhitfield opened a pull request on mantidproject/mantid
Add UngroupDetectors to ExtractMask
Get #38198 into ornl-next
ekapadi created a review on a pull request on mantidproject/mantid
I built the branch, and ran through the suggested testing procedure. Everything works as it should. The code quality looks good, and there are new unit tests to cover the behavior of new argument...

View on GitHub

ekapadi created a review comment on a pull request on mantidproject/mantid
Same kind of thing as previous comments: suggest: "allowing the output ``MaskWorkspace`` to represent the mask flags of the individual detectors."

View on GitHub

ekapadi created a review comment on a pull request on mantidproject/mantid
Suggest: **"This means that if the input workspace is grouped with multiple detectors per spectrum, the output workspace will have a single spectrum per detector."** (Notes: spectrum [singular],...

View on GitHub

ekapadi created a review comment on a pull request on mantidproject/mantid
It looks like we went from an OMP-threaded for loop to a non-threaded for loop. Was there no other way to do this? (If I assume masking is _rare_, this is probably OK. I can imagine the opposite...

View on GitHub

ekapadi created a review on a pull request on mantidproject/mantid
I built the branch, and ran through the suggested testing procedure. Everything works as it should. The code quality looks good, and there are new unit tests to cover the behavior of new argument...

View on GitHub

ekapadi created a review on a pull request on mantidproject/mantid
I built the branch, and ran through the suggested testing procedure. Everything works as it should. The code quality looks good, and there are new unit tests to cover the behavior of new argument...

View on GitHub

Load more