Skip to content

Commit

Permalink
Fix testing of min requirements (#877)
Browse files Browse the repository at this point in the history
  • Loading branch information
rly committed Jul 10, 2023
1 parent b89679d commit b7faf15
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,6 @@ jobs:
matrix:
include:
- { name: linux-gallery-python3.11-ros3 , python-ver: "3.11", os: ubuntu-latest }
- { name: windows-gallery-python3.11-ros3, python-ver: "3.11", os: windows-latest }
- { name: macos-gallery-python3.11-ros3 , python-ver: "3.11", os: macos-latest }
steps:
- name: Cancel non-latest runs
uses: styfle/cancel-workflow-action@0.11.0
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@

- Added tutorial for the new `TermSet` class @mavaylon1 [#880](https://github.com/hdmf-dev/hdmf/pull/880)

## Bug fixes
- Fixed CI testing of minimum installation requirements, and removed some gallery tests run on each PR. @rly
[#877](https://github.com/hdmf-dev/hdmf/pull/877)

## HMDF 3.6.1 (May 18, 2023)

### Bug fixes
- Fix compatibility with hdmf_zarr for converting string arrays from Zarr to HDF5 by adding logic to determine the dtype for object arrays. @oruebel [#866](https://github.com/hdmf-dev/hdmf/pull/866)
- Fixed compatibility with hdmf_zarr for converting string arrays from Zarr to HDF5 by adding logic to determine the dtype for object arrays. @oruebel [#866](https://github.com/hdmf-dev/hdmf/pull/866)

## HDMF 3.6.0 (May 12, 2023)

Expand Down
10 changes: 4 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ setenv =
PYTHONDONTWRITEBYTECODE = 1
VIRTUALENV_PIP = 22.3.1
install_command =
python -m pip install -U {opts} {packages}
python -m pip install {opts} {packages}

deps =
-rrequirements-dev.txt
Expand All @@ -27,10 +27,8 @@ commands =
# Test with python 3.11; pinned dev and optional reqs
[testenv:py311-optional]
basepython = python3.11
install_command =
python -m pip install {opts} {packages}
deps =
-rrequirements-dev.txt
{[testenv]deps}
-rrequirements-opt.txt
commands = {[testenv]commands}

Expand Down Expand Up @@ -91,7 +89,7 @@ commands = {[testenv:build]commands}
[testenv:build-py311-optional]
basepython = python3.11
deps =
-rrequirements-dev.txt
{[testenv]deps}
-rrequirements-opt.txt
commands = {[testenv:build]commands}

Expand Down Expand Up @@ -128,7 +126,7 @@ commands = python -c "import hdmf; import hdmf.common"
# Envs that will execute gallery tests
[testenv:gallery]
install_command =
python -m pip install -U {opts} {packages}
python -m pip install {opts} {packages}

deps =
-rrequirements-dev.txt
Expand Down

0 comments on commit b7faf15

Please sign in to comment.