From 6375578587324654fdf41594cd83381a8c3e9c5c Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Wed, 19 Jun 2024 21:58:48 -0400 Subject: [PATCH] update setup to remove py37 and add py312 --- CHANGES.rst | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 0baef25..7e5e841 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,7 +5,8 @@ Changes `Unreleased `_ ========================================================================================== -* Nothing new for the moment. +* Drop Python 3.7. +* Add Python 3.12. .. _changes_0.4.5: diff --git a/setup.py b/setup.py index 5a14ce4..69fa71e 100644 --- a/setup.py +++ b/setup.py @@ -20,11 +20,11 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Scientific/Engineering :: Atmospheric Science', ] @@ -42,5 +42,5 @@ include_package_data=True, zip_safe=False, install_requires=reqs, - python_requires=">=3.7,<3.12", + python_requires=">=3.8,<3.13", )