Skip to content

Commit

Permalink
Merge pull request #569 from pfackeldey/chore_drop_python38
Browse files Browse the repository at this point in the history
chore: drop python 3.8
  • Loading branch information
martindurant authored Feb 10, 2025
2 parents c3c2c4e + 12049c8 commit ce1b71d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/conda-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
- name: Setup Conda Environment
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
miniforge-version: latest
use-mamba: true
channel-priority: strict
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-tests.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.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{matrix.platform}}
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "dask-awkward"
description = "Awkward Array meets Dask"
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.8"
requires-python = ">=3.9"
authors = [
{ name = "Doug Davis", email = "[email protected]" },
{ name = "Martin Durant", email = "[email protected]" },
Expand All @@ -24,11 +24,11 @@ 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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
Expand Down
2 changes: 1 addition & 1 deletion src/dask_awkward/lib/io/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ def to_dataframe(
"""
import dask
from dask.dataframe import DataFrame as DaskDataFrame
from dask.dataframe.core import new_dd_object # type: ignore
from dask.dataframe.core import new_dd_object

if parse_version(dask.__version__) >= parse_version("2025"):
raise NotImplementedError(
Expand Down

0 comments on commit ce1b71d

Please sign in to comment.