Skip to content

Commit 96e107e

Browse files
committed
coffea still supports 3.8
1 parent b21b3a2 commit 96e107e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
platform: [ubuntu-latest, macos-latest, windows-latest]
21-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
21+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2222
runs-on: ${{matrix.platform}}
2323
steps:
2424
- name: Checkout

pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "dask-histogram"
77
description = "Histogramming with Dask."
88
readme = "README.md"
99
license = {text = "BSD-3-Clause"}
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.8"
1111
authors = [
1212
{ name = "Doug Davis", email = "[email protected]" },
1313
]
@@ -16,6 +16,7 @@ classifiers = [
1616
"License :: OSI Approved :: BSD License",
1717
"Programming Language :: Python :: 3",
1818
"Programming Language :: Python :: 3 :: Only",
19+
"Programming Language :: Python :: 3.8",
1920
"Programming Language :: Python :: 3.9",
2021
"Programming Language :: Python :: 3.10",
2122
"Programming Language :: Python :: 3.11",
@@ -104,6 +105,7 @@ ignore_missing_imports = true
104105
ignore = "D105"
105106

106107
[tool.ruff]
108+
target-version = "py38"
107109
line-length = 88
108110
src = ["src", "tests"]
109111

0 commit comments

Comments
 (0)