Skip to content

Commit

Permalink
drop python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Apr 2, 2024
1 parent 7fb1f4f commit a9d73f9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11"]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Typing :: Typed",
]
Expand All @@ -25,11 +24,8 @@ include = ["examples"]

[tool.poetry.dependencies]
# These are the main runtime dependencies.
python = ">= 3.10.0, < 3.13"
numpy = [
{version = "^1.24.2", python = "<3.12"},
{version = "^1.25", python = ">=3.12"}
]
python = ">= 3.10.0, < 3.12"
numpy = "^1.24.2"
numpydoc_decorator = { git = "https://github.com/alimanfoo/numpydoc_decorator.git", branch = "main" }
pandas = "^1.5.3"
scikit-image = "^0.20.0"
Expand Down

0 comments on commit a9d73f9

Please sign in to comment.