Skip to content

Commit 3a682da

Browse files
authored
Merge branch 'dev' into improve_data_orientation_msg
2 parents 24ed800 + 3f4c834 commit 3a682da

File tree

11 files changed

+14
-12
lines changed

11 files changed

+14
-12
lines changed

.github/workflows/auto-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: "3.9"
18+
python-version: "3.10"
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip

.github/workflows/dev-gallery.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Python
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: 3.9
20+
python-version: "3.10"
2121

2222
- name: Install pytest
2323
run: |

.github/workflows/doc-link-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Python
1515
uses: actions/setup-python@v5
1616
with:
17-
python-version: 3.9
17+
python-version: "3.10"
1818

1919
- name: Install Sphinx dependencies
2020
run: pip install -r docs/requirements-rtd.txt

.github/workflows/read-nwbfile-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: ["ubuntu-latest", "windows-latest"] # TODO: update mac and streaming methods
19-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
19+
python-version: ["3.10", "3.13"]
2020
steps:
2121
- uses: conda-incubator/setup-miniconda@v3
2222
with:

.github/workflows/streaming-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: ["ubuntu-latest", "windows-latest"] # TODO: update mac and streaming methods
16-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.10", "3.13"]
1717
steps:
1818
- uses: actions/checkout@v4
1919
- run: git fetch --prune --unshallow --tags

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: ["ubuntu-latest", "macos-13", "windows-latest"]
16-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
15+
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
16+
python-version: ["3.10", "3.13"]
1717
env:
1818
TESTING_FILES_FOLDER_PATH: ./204919/testing_files/
1919
steps:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ dist/
3737
# Doc build
3838
/docs/_build/*
3939
_build/
40+
uv.lock

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
### Improvements
77
* Added documentation to API and CLI docs on how to use the dandi config option. [#624](https://github.com/NeurodataWithoutBorders/nwbinspector/pull/624)
88
* Improved `check_data_orientation` error message to include the TimeSeries name, current shape, and a suggestion for transposing the data. [#1430](https://github.com/NeurodataWithoutBorders/nwbinspector/pull/1430)
9+
* Dropped Python 3.9 and middle Python versions (3.11, 3.12) from CI; now testing only Python 3.10 and 3.13. [#632](https://github.com/NeurodataWithoutBorders/nwbinspector/pull/632)
10+
* Updated macOS CI runner from `macos-13` to `macos-latest`. [#639](https://github.com/NeurodataWithoutBorders/nwbinspector/pull/639)
911

1012
# v0.6.5 (July 25, 2025)
1113

docs/.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version: 2
88
build:
99
os: ubuntu-20.04
1010
tools:
11-
python: "3.9"
11+
python: "3.10"
1212

1313
# Build documentation in the docs/ directory with Sphinx
1414
sphinx:

docs/user_guide/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ If you haven't checked it out already, please read the :nwb-overview:`NWB Overvi
66

77
The NWBInspector tool offers convenient command-line usage via any standard Conda or Python terminal.
88

9-
To install the package in any generic Python v3.9-v3.13 environment, simply type
9+
To install the package in a Python v3.10+ environment, run:
1010

1111
::
1212

0 commit comments

Comments
 (0)