Skip to content

Commit

Permalink
Merge pull request #1233 from scikit-hep/drop-py38-entirely
Browse files Browse the repository at this point in the history
chore: completely drop py3.8
  • Loading branch information
lgray authored Dec 21, 2024
2 parents c26d6e8 + 713ad9b commit 6185600
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "coffea"
description = "Basic tools and wrappers for enabling not-too-alien syntax when running columnar Collider HEP analysis."
readme = "README.rst"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.8"
requires-python = ">=3.9"
authors = [
{ name = "Lindsey Gray", email = "[email protected]" },
{ name = "Nick Smith", email = "[email protected]" },
Expand Down
5 changes: 3 additions & 2 deletions tests/test_jetmet_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,8 +722,9 @@ def test_corrected_jets_factory(optimization_enabled):
events = None
from coffea.nanoevents import NanoEventsFactory

with Client(), dask.config.set(
{"awkward.optimization.enabled": optimization_enabled}
with (
Client(),
dask.config.set({"awkward.optimization.enabled": optimization_enabled}),
):
events = NanoEventsFactory.from_root(
{os.path.abspath("tests/samples/nano_dy.root"): "Events"},
Expand Down

0 comments on commit 6185600

Please sign in to comment.