Skip to content

Commit

Permalink
- Remove support for python <= 3.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wim Pomp committed Apr 12, 2024
1 parent 1bfac6f commit 8bf1646
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ndbioimage"
version = "2024.4.5"
version = "2024.4.6"
description = "Bio image reading, metadata and some affine registration."
authors = ["W. Pomp <w.pomp@nki.nl>"]
license = "GPLv3"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/wimpomp/ndbioimage"
exclude = ["ndbioimage/jars"]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.10"
numpy = "*"
pandas = "*"
tifffile = "*"
Expand All @@ -35,7 +35,7 @@ xsdata = "^23" # until pydantic is up-to-date
pytest = { version = "*", optional = true }

[tool.poetry.extras]
test = ["pytest-xdist"]
test = ["pytest"]

[tool.poetry.scripts]
ndbioimage = "ndbioimage:main"
Expand Down

0 comments on commit 8bf1646

Please sign in to comment.