Skip to content

Commit

Permalink
[INFRA] Officially support Python 3.12 (#101)
Browse files Browse the repository at this point in the history
* initial commit expanding python ver support

* Remove py313 from testing matrix

* Update README.md

Co-authored-by: Pierre-Louis Barbarant <[email protected]>

---------

Co-authored-by: Pierre-Louis Barbarant <[email protected]>
  • Loading branch information
emdupre and pbarbarant authored Nov 5, 2024
1 parent 5eb8a1f commit 131367e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand All @@ -31,4 +31,4 @@ jobs:
flake8 --verbose .
- name: Test with pytest
run: |
pytest
pytest
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# fmralign

![build](https://img.shields.io/github/actions/workflow/status/parietal-inria/fmralign/testing.yml?event=push&style=for-the-badge)
![python version](https://img.shields.io/badge/python-3.9_|_3.10_|_3.11|_3.12-blue?style=for-the-badge)
![license](https://img.shields.io/github/license/parietal-inria/fmralign?style=for-the-badge)

[Functional alignment for fMRI](https://parietal-inria.github.io/fmralign-docs) (functional Magnetic Resonance Imaging) data.

This light-weight Python library provides access to a range of functional alignment methods, including Procrustes and Optimal Transport.
It is compatible with and inspired by [Nilearn](http://nilearn.github.io).
Alternative implementations of these ideas can be found in the [pymvpa](http://www.pymvpa.org) or [brainiak](http://brainiak.org) packages.


## Getting Started

### Installation
Expand Down

0 comments on commit 131367e

Please sign in to comment.