Skip to content

Commit

Permalink
Drop Python 3.9 support (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
basnijholt authored Dec 4, 2024
1 parent 2393940 commit 562c1c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires = ["meson-python", "setuptools_scm"]
[project]
name = "pfapack"
description = "Efficient numerical computation of the Pfaffian for dense and banded skew-symmetric matrices."
requires-python = ">=3.9"
requires-python = ">=3.10"
dynamic = ["version"]
authors = [
# Packing author
Expand All @@ -19,7 +19,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down Expand Up @@ -88,6 +87,7 @@ skip = [
"cp36-*", # Skip Python 3.6
"cp37-*", # Skip Python 3.7
"cp38-*", # Skip Python 3.8
"cp39-*", # Skip Python 3.9
]

[tool.cibuildwheel.linux]
Expand Down

0 comments on commit 562c1c2

Please sign in to comment.