Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: neurostuff/NiMARE
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.5.1
Choose a base ref
...
head repository: neurostuff/NiMARE
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Jun 13, 2025

  1. [skip ci] Update CHANGELOG

    jdkent authored and github-actions[bot] committed Jun 13, 2025
    Copy the full SHA
    d14ce5e View commit details
  2. [FIX] supress cluttering warning (#931)

    supress cluttering warning
    jdkent authored Jun 13, 2025
    Copy the full SHA
    7e419f5 View commit details
  3. [skip ci] Update CHANGELOG

    jdkent authored and github-actions[bot] committed Jun 13, 2025
    Copy the full SHA
    9a793b7 View commit details
Showing with 31 additions and 2 deletions.
  1. +29 −1 CHANGELOG.md
  2. +2 −1 nimare/utils.py
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,35 @@

All notable changes to NiMARE releases are documented in this page.

## [Unreleased](https://github.com/neurostuff/NiMARE/compare/0.5.0...HEAD)
## [Unreleased](https://github.com/neurostuff/NiMARE/compare/0.5.2...HEAD)

## [0.5.2](https://github.com/neurostuff/NiMARE/compare/0.5.1...0.5.2) - 2025-06-13

<!-- Release notes generated using configuration in .github/release.yml at main -->
### What's Changed

#### 🐛 Bug Fixes

* [FIX] supress cluttering warning by @jdkent in https://github.com/neurostuff/NiMARE/pull/931

**Full Changelog**: https://github.com/neurostuff/NiMARE/compare/0.5.1...0.5.2

## [0.5.1](https://github.com/neurostuff/NiMARE/compare/0.5.0...0.5.1) - 2025-06-13

<!-- Release notes generated using configuration in .github/release.yml at main -->
### What's Changed

#### 🐛 Bug Fixes

* Fix the use correlation matrix from the results object when available for Reports by @JulioAPeraza in https://github.com/neurostuff/NiMARE/pull/925
* [FIX] reduce memory/time for running reports by @jdkent in https://github.com/neurostuff/NiMARE/pull/929
* [FIX] do not try to set n_cores on initialized objects by @jdkent in https://github.com/neurostuff/NiMARE/pull/930

#### Other Changes

* [TST] patch url calls to not fetch contents by @jdkent in https://github.com/neurostuff/NiMARE/pull/926

**Full Changelog**: https://github.com/neurostuff/NiMARE/compare/0.5.0...0.5.1

## [0.5.0](https://github.com/neurostuff/NiMARE/compare/0.4.2...0.5.0) - 2025-04-25

3 changes: 2 additions & 1 deletion nimare/utils.py
Original file line number Diff line number Diff line change
@@ -207,7 +207,8 @@ def mm2vox(xyz, affine):
From here:
http://blog.chrisgorgolewski.org/2014/12/how-to-convert-between-voxel-and-mm.html
"""
ijk = nib.affines.apply_affine(np.linalg.inv(affine), xyz).astype(int)
with np.errstate(invalid='ignore'):
ijk = nib.affines.apply_affine(np.linalg.inv(affine), xyz).astype(int)
return ijk