From 171302db3a6a19ed898134421bc990fc7140253c Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Mon, 16 Oct 2023 14:47:17 -0500 Subject: [PATCH] allow 3.8 (#389) --- .github/workflows/pypi-tests.yml | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi-tests.yml b/.github/workflows/pypi-tests.yml index c8abbcdc..8109a9a5 100644 --- a/.github/workflows/pypi-tests.yml +++ b/.github/workflows/pypi-tests.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: platform: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] runs-on: ${{matrix.platform}} steps: - name: Checkout diff --git a/pyproject.toml b/pyproject.toml index e28f61dd..f5e4d29b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "dask-awkward" description = "Awkward Array meets Dask" readme = "README.md" license = {text = "BSD-3-Clause"} -requires-python = ">=3.9" +requires-python = ">=3.8" authors = [ { name = "Doug Davis", email = "ddavis@ddavis.io" }, { name = "Martin Durant", email = "mdurant@anaconda.com" }, @@ -24,6 +24,7 @@ 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",