Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

name: Python ${{ matrix.python-version }}
steps:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

## Version 0.1
## Version 0.1 - 0.1.1

- Migrating the class from the SpatialExperiment package
- Adding the image classes specific to SFE with 'extent'.
7 changes: 5 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,14 @@ python_requires = >=3.9
# For more information, check out https://semver.org/.
install_requires =
importlib-metadata; python_version<"3.8"
spatialexperiment>=0.0.6
pillow>=11.0
spatialexperiment>=0.0.8
pillow
geopandas
shapely
requests
rasterio
aicsimageio
numcodecs<=0.15.1

[options.packages.find]
where = src
Expand Down
3 changes: 2 additions & 1 deletion src/spatialfeatureexperiment/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@
finally:
del version, PackageNotFoundError

from .SpatialFeatureExperiment import SpatialFeatureExperiment
from .aligned_spatialimage import BioFormatsImage, ExtImage, SpatRasterImage
from .sfe import SpatialFeatureExperiment
Loading