Skip to content

Commit

Permalink
Merge pull request #149 from dvm-shlee/main
Browse files Browse the repository at this point in the history
Minor update
  • Loading branch information
dvm-shlee authored Feb 1, 2024
2 parents 3369ca6 + a0d3d90 commit 131ad54
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ jobs:
python -m pip install --upgrade pip
pip install .[dev]
- name: Install optional dependencies for ITK dataset
run: |
pip install .[SimpleITK]
- name: Install tutorial
run: make tests/tutorials

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/BrkRaw/tutorials/master)

## BrkRaw: A comprehensive tool to access raw Bruker Biospin MRI data
#### Version: 0.3.8
#### Version: 0.3.11

### Description

Expand Down
2 changes: 1 addition & 1 deletion brkraw/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .lib import *

__version__ = '0.3.10'
__version__ = '0.3.11'
__all__ = ['BrukerLoader', '__version__']


Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies = [
]
description = "Bruker PvDataset Loader"
license = {text = "GNLv3"}
version = "0.3.10"
dynamic = ["version"]
maintainers = [{name = "SungHo Lee", email = '[email protected]'}]
name = "brkraw"
readme = "README.md"
Expand All @@ -40,6 +40,9 @@ dev = [
"nbmake"
]

[tool.setuptools.dynamic]
version = {attr = "nordic.__version__"}

[project.scripts]
brkraw = "brkraw.scripts.brkraw:main"
brk-backup = 'brkraw.scripts.brk_backup:main'

0 comments on commit 131ad54

Please sign in to comment.