From 2f04c2c37b53cd2eca5572d481ea60f2401ade70 Mon Sep 17 00:00:00 2001 From: Paul Sanders Date: Wed, 11 Sep 2024 08:34:26 -0400 Subject: [PATCH] Remove references to Python 3.9 --- README.md | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 756bc7b5b..08eec0588 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ pip install pandas-stubs ## Installation from sources -- Make sure you have `python >= 3.9` installed. +- Make sure you have `python >= 3.10` installed. - Install poetry ```sh diff --git a/pyproject.toml b/pyproject.toml index 893f4cf20..cbcd4217d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,9 +16,9 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", ] packages = [{ "include" = "pandas-stubs" }] @@ -125,7 +125,7 @@ args = [ [tool.black] -target-version = ['py39'] +target-version = ['py310'] [tool.isort] known_pre_libs = "pandas._config"