Skip to content

Commit

Permalink
Merge pull request #550 from AllenCell/activate-python-3.9-ci
Browse files Browse the repository at this point in the history
Enable testing/building on 3.9 in ci
  • Loading branch information
yrkim98 authored Nov 11, 2024
2 parents 6608df3 + 404b00d commit cab6b67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_lint_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest]
python-version: ["3.10"]
python-version: ["3.9", "3.10"]
2 changes: 1 addition & 1 deletion .github/workflows/test_lint_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
python-version: ["3.9", "3.10"]
8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,8 @@ name = "allencell-segmenter-ml"
version = "0.1.16"
description = "A plugin to leverage ML segmentation in napari"
readme = "README.md"
requires-python = "<3.11,>=3.10"
requires-python = ">=3.9,<3.11"
license = { file = "LICENSE" }
authors = [
{ email = "[email protected]", name = "Brian Kim" },
{ email = "[email protected]", name = "Chris Hughes" },
{ email = "[email protected]", name = "Daniel Saelid" },
]

classifiers = [
"Development Status :: 2 - Pre-Alpha",
Expand All @@ -29,6 +24,7 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Image Processing",
]
Expand Down

0 comments on commit cab6b67

Please sign in to comment.