Skip to content

Commit f58f26e

Browse files
committed
pyproject.toml & ci updates; drop py3.8
Dask has dropped both 3.8 and 3.9, but 3.9 is not EOL yet.
1 parent f7d236e commit f58f26e

File tree

3 files changed

+5
-15
lines changed

3 files changed

+5
-15
lines changed

.github/workflows/cd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: "3.10"
22+
python-version: "3.12"
2323

2424
- name: Build
2525
run: |

.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.8", "3.9", "3.10", "3.11", "3.12"]
21+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2222
runs-on: ${{matrix.platform}}
2323
steps:
2424
- name: Checkout

pyproject.toml

+3-13
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.8"
10+
requires-python = ">=3.9"
1111
authors = [
1212
{ name = "Doug Davis", email = "[email protected]" },
1313
]
@@ -16,11 +16,11 @@ classifiers = [
1616
"License :: OSI Approved :: BSD License",
1717
"Programming Language :: Python :: 3",
1818
"Programming Language :: Python :: 3 :: Only",
19-
"Programming Language :: Python :: 3.8",
2019
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
2424
"Topic :: Scientific/Engineering",
2525
"Topic :: Scientific/Engineering :: Information Analysis",
2626
"Topic :: Scientific/Engineering :: Mathematics",
@@ -34,17 +34,7 @@ dynamic = ["version"]
3434

3535
[project.optional-dependencies]
3636
complete = [
37-
"dask-sphinx-theme >=3.0.2",
38-
"dask[array,dataframe]",
39-
"dask-awkward >=2023.10.0",
40-
"hist",
41-
"pytest",
42-
"sphinx >=4.0.0",
43-
"sphinxcontrib-applehelp>=1.0.0,<1.0.7",
44-
"sphinxcontrib-devhelp>=1.0.0,<1.0.6",
45-
"sphinxcontrib-htmlhelp>=2.0.0,<2.0.5",
46-
"sphinxcontrib-serializinghtml>=1.1.0,<1.1.10",
47-
"sphinxcontrib-qthelp>=1.0.0,<1.0.7",
37+
"dask-histogram[docs,test]"
4838
]
4939
docs = [
5040
"dask-sphinx-theme >=3.0.2",

0 commit comments

Comments
 (0)