Officially drop Python 3.8 support (#13386)

This commit is contained in:
Sebastian Rittau
2025-01-10 15:06:22 +01:00
committed by GitHub
parent 822fae31e5
commit 10ebc999ee
5 changed files with 5 additions and 21 deletions
+1 -11
View File
@@ -1,14 +1,4 @@
version = "0.13.2"
# Requires a version of numpy and matplotlib with a `py.typed` file
#
# TODO: Specifying the python-version for matplotlib should not be necessary,
# because of the requires_python field. However, this needs changes to
# get_typeshed_stub_version.py (see there).
requires = [
"matplotlib>=3.8; python_version>='3.9'",
"numpy>=1.20",
"pandas-stubs",
]
# matplotlib>=3.8 requires Python >=3.9
requires_python = ">=3.9"
requires = ["matplotlib>=3.8", "numpy>=1.20", "pandas-stubs"]
upstream_repository = "https://github.com/mwaskom/seaborn"