Skip to content

Commit

Permalink
remove python 3.8 support (#768)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwest-uw authored Jan 6, 2025
1 parent 61c538a commit 7436615
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/canary_builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
defaults:
run:
shell: bash -leo pipefail {0}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors = [{name="KBMOD Developers"}, ]
description = "Moving object detection library implemented on GPUs"
license = {file="LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
keywords = ["astronomy", "astrophysics", "image_processing", "gpu"]
classifiers = [
"Development Status :: 3 - Beta",
Expand Down Expand Up @@ -84,7 +84,7 @@ tests = [
# formatting configuration as specified at developer.lsst.io
[tool.black]
line-length = 110
target-version = ["py38"]
target-version = ["py39", "py310", "py311"]
extend-exclude = "data/|docs/|include/|lib/|setup.py"

[tool.isort]
Expand Down

0 comments on commit 7436615

Please sign in to comment.