From 7a9cb8a82604bc14eec8668a9dcb08ec3b51fc75 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Tue, 23 Jan 2024 09:10:20 -0600 Subject: [PATCH] support 3.9 to 3.12 (#47) --- .github/workflows/pypi.yml | 2 +- pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index e81c891..e705cba 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -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"] + python-version: ["3.9", "3.10", "3.11", "3.12"] runs-on: ${{matrix.platform}} steps: - name: Checkout diff --git a/pyproject.toml b/pyproject.toml index eca4a6c..88369b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "awkward-pandas" description = "Awkward Array Pandas Extension" readme = "README.md" license = "BSD-3-Clause" -requires-python = ">=3.8" +requires-python = ">=3.9" authors = [ { name = "Doug Davis", email = "ddavis@ddavis.io" }, { name = "Martin Durant", email = "mdurant@anaconda.com" }, @@ -21,10 +21,10 @@ 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", "Topic :: Scientific/Engineering", ] dependencies = [ @@ -91,7 +91,7 @@ line_length = 88 src_paths = ["src", "tests"] [tool.mypy] -python_version = "3.8" +python_version = "3.9" files = ["src", "tests"] warn_unused_configs = true show_error_codes = true