From 286d961ccd8672787dbc4e73b49c8d1181042f35 Mon Sep 17 00:00:00 2001 From: blnicho Date: Thu, 19 Feb 2026 10:17:34 -0700 Subject: [PATCH] Drop Python 3.9 and add Python 3.13 --- .github/workflows/core.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index c9c7e1bf..0da84fb1 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -82,10 +82,10 @@ jobs: fail-fast: false matrix: python-version: - - '3.9' - '3.10' - '3.11' - '3.12' + - '3.13' os: - linux - win64 diff --git a/pyproject.toml b/pyproject.toml index 232c7beb..4f8c0357 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ description = "IDAES Process Systems Engineering Examples" readme = "README.md" version = "2.10.dev0" license = {text="BSD"} -requires-python = ">=3.9" +requires-python = ">=3.10" authors = [ {name="The IDAES Project"}, {name="Dan Gunter", email="dkgunter@lbl.gov"} @@ -28,10 +28,10 @@ classifiers = [ "Operating System :: Unix", "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", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Scientific/Engineering :: Chemistry",