Skip to content

Commit

Permalink
Merge pull request #174 from henrypinkard/main
Browse files Browse the repository at this point in the history
test version change
  • Loading branch information
henrypinkard authored Jul 26, 2024
2 parents fc080a2 + d0ce333 commit ca05acd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ndtiff_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install ./python/[test]
pip install -r python/requirements.txt
- name: Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion python/ndstorage/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 1, 17)
version_info = (0, 1, 18)
__version__ = ".".join(map(str, version_info))
6 changes: 3 additions & 3 deletions python/ndstorage/test/writing_test.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import numpy as np
import os
import shutil
from .ndtiff_file import SingleNDTiffWriter, SingleNDTiffReader
from .ndtiff_dataset import NDTiffDataset
from .ndram_dataset import NDRAMDataset
from ..ndtiff_file import SingleNDTiffWriter, SingleNDTiffReader
from ..ndtiff_dataset import NDTiffDataset
from ..ndram_dataset import NDRAMDataset
import pytest

@pytest.fixture(scope="function")
Expand Down
7 changes: 7 additions & 0 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ dynamic = ["version"]
description = "N-dimensional, multiresolution file format for Micro-Manager"
readme = "README.md"


[project.optional-dependencies]
test = [
"pytest",
]


[tool.pytest.ini_options]
testpaths = [
"python/ndstorage/test",
Expand Down

0 comments on commit ca05acd

Please sign in to comment.