Skip to content

Commit

Permalink
remove pytest (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
fwfichtner authored Mar 3, 2022
1 parent 490a83c commit ecce1c9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

[0.1.4] (2022-03-03)
----------------------
Changed
*******
- removed `pytest` from normal requirements

[0.1.3] (2021-10-11)
----------------------
Added
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
numpy
onnxruntime
pytest
scipy
2 changes: 1 addition & 1 deletion ukis_csmask/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.3"
__version__ = "0.1.4"
3 changes: 2 additions & 1 deletion ukis_csmask/mask.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from pathlib import Path

import numpy as np
import onnxruntime
from pathlib import Path
from scipy import ndimage

from .utils import reclassify, tile_array, untile_array
Expand Down

0 comments on commit ecce1c9

Please sign in to comment.