Skip to content

Commit 69129ad

Browse files
authored
Implementing R/SFE's image classes with extent (#5)
1 parent a176eeb commit 69129ad

File tree

7 files changed

+710
-5
lines changed

7 files changed

+710
-5
lines changed

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1515

1616
name: Python ${{ matrix.python-version }}
1717
steps:

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Changelog
22

3-
## Version 0.1
3+
## Version 0.1 - 0.1.1
44

55
- Migrating the class from the SpatialExperiment package
6+
- Adding the image classes specific to SFE with 'extent'.

setup.cfg

+5-2
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,14 @@ python_requires = >=3.9
4949
# For more information, check out https://semver.org/.
5050
install_requires =
5151
importlib-metadata; python_version<"3.8"
52-
spatialexperiment>=0.0.6
53-
pillow>=11.0
52+
spatialexperiment>=0.0.8
53+
pillow
5454
geopandas
5555
shapely
5656
requests
57+
rasterio
58+
aicsimageio
59+
numcodecs<=0.15.1
5760

5861
[options.packages.find]
5962
where = src

src/spatialfeatureexperiment/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@
1515
finally:
1616
del version, PackageNotFoundError
1717

18-
from .SpatialFeatureExperiment import SpatialFeatureExperiment
18+
from .aligned_spatialimage import BioFormatsImage, ExtImage, SpatRasterImage
19+
from .sfe import SpatialFeatureExperiment

0 commit comments

Comments
 (0)