From 90fa7ec495ce58e1096764a6ed0dc4d8c99af1d7 Mon Sep 17 00:00:00 2001 From: Carlos Date: Wed, 8 Jan 2025 12:11:47 -0800 Subject: [PATCH] Update setup.cfg - drop support for 3.9 - add support for 3.13 --- setup.cfg | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 9b0fd7a..1fb7bab 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ description-file = README.md license_files = LICENSE name = purpleair_api -version = 1.2.0 +version = 1.3.0 author = Carlos Santos author_email = dose.lucky.sake@cloak.id license = MIT @@ -20,6 +20,10 @@ long_description_content_type = text/markdown platforms = Windows 32/64, Linux 32/64, MacOS 32/64 [options] -python_requires = >=3.8 packages = purpleair_api -install_requires = requests \ No newline at end of file +install_requires = requests +python_requires = >=3.9,<3.14 + +[tool:black] +line-length = 100 +target-version = ['py39', 'py310', 'py311', 'py312', 'py313'] \ No newline at end of file