Skip to content

Commit

Permalink
support 3.9 to 3.12 (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis authored Jan 23, 2024
1 parent 0269282 commit 7a9cb8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi.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"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ${{matrix.platform}}
steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand All @@ -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 = [
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7a9cb8a

Please sign in to comment.