Skip to content

Commit

Permalink
coffea still supports 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis committed Dec 19, 2024
1 parent b21b3a2 commit 96e107e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{matrix.platform}}
steps:
- name: Checkout
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "dask-histogram"
description = "Histogramming with Dask."
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.9"
requires-python = ">=3.8"
authors = [
{ name = "Doug Davis", email = "[email protected]" },
]
Expand All @@ -16,6 +16,7 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -104,6 +105,7 @@ ignore_missing_imports = true
ignore = "D105"

[tool.ruff]
target-version = "py38"
line-length = 88
src = ["src", "tests"]

Expand Down

0 comments on commit 96e107e

Please sign in to comment.