Skip to content

Commit

Permalink
pyproject.toml & ci updates; drop py3.8
Browse files Browse the repository at this point in the history
Dask has dropped both 3.8 and 3.9, but 3.9 is not EOL yet.
  • Loading branch information
douglasdavis committed Dec 19, 2024
1 parent f7d236e commit f58f26e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.12"

- name: Build
run: |
Expand Down
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.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
16 changes: 3 additions & 13 deletions 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.8"
requires-python = ">=3.9"
authors = [
{ name = "Doug Davis", email = "[email protected]" },
]
Expand All @@ -16,11 +16,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 All @@ -34,17 +34,7 @@ dynamic = ["version"]

[project.optional-dependencies]
complete = [
"dask-sphinx-theme >=3.0.2",
"dask[array,dataframe]",
"dask-awkward >=2023.10.0",
"hist",
"pytest",
"sphinx >=4.0.0",
"sphinxcontrib-applehelp>=1.0.0,<1.0.7",
"sphinxcontrib-devhelp>=1.0.0,<1.0.6",
"sphinxcontrib-htmlhelp>=2.0.0,<2.0.5",
"sphinxcontrib-serializinghtml>=1.1.0,<1.1.10",
"sphinxcontrib-qthelp>=1.0.0,<1.0.7",
"dask-histogram[docs,test]"
]
docs = [
"dask-sphinx-theme >=3.0.2",
Expand Down

0 comments on commit f58f26e

Please sign in to comment.