Skip to content

Commit

Permalink
Add packaging to minimal with test (#347)
Browse files Browse the repository at this point in the history
* add test for packaging

* properly adjust first minimal

* add packaging to minimal

* Update CHANGELOG.md
  • Loading branch information
CodyCBakerPhD authored Jun 20, 2024
1 parent 065ed43 commit 4d98f31
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ jobs:
git config --global user.name "CI Almighty"
- name: Install roiextractors with minimal requirements
run: pip install .[test]
run: pip install .
- name: Test initial import of all non-lazy dependencies
run: python -c "import roiextractors"

- name: Install roiextractors with testing requirements
run: pip install .[test]
- name: Run minimal tests
run: pytest tests/test_internals -n auto --dist loadscope

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* Fixed the Daily testing workflows by passing along the appropriate secrets: [#340](https://github.com/catalystneuro/roiextractors/pull/340)
* Change the criteria of determining if Bruker data is volumetric [#342](https://github.com/catalystneuro/roiextractors/pull/342)
* Fixes a bug that assumes the channel name is is on the tiff file for `BrukerTiffSinglePlaneImagingExtractor` [#343](https://github.com/catalystneuro/roiextractors/pull/343)
* Including `packaging` explicitly in minimal requirements [#347](https://github.com/catalystneuro/roiextractors/pull/347)

### Improvements

Expand Down
1 change: 1 addition & 0 deletions requirements-minimal.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ scipy>=1.5.2
psutil>=5.8.0
PyYAML
lxml
packaging

0 comments on commit 4d98f31

Please sign in to comment.