From 2aede8297f457a4887b65c460e3f47dacaeb4eb0 Mon Sep 17 00:00:00 2001 From: Isaac Yang Date: Thu, 10 Oct 2024 09:39:44 -0700 Subject: [PATCH] Update version and python requires (#3024) --- integration/monai/setup.py | 11 ++++++----- setup.cfg | 3 +-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/integration/monai/setup.py b/integration/monai/setup.py index ca290591e5..e74b099739 100644 --- a/integration/monai/setup.py +++ b/integration/monai/setup.py @@ -24,14 +24,14 @@ release = os.environ.get("MONAI_NVFL_RELEASE") if release == "1": package_name = "monai-nvflare" - version = "0.2.9" + version = "0.3.0" else: package_name = "monai-nvflare-nightly" today = datetime.date.today().timetuple() year = today[0] % 1000 month = today[1] day = today[2] - version = f"0.2.9.{year:02d}{month:02d}{day:02d}" + version = f"0.3.0.{year:02d}{month:02d}{day:02d}" setup( name=package_name, @@ -48,14 +48,15 @@ ), license_files=("LICENSE",), classifiers=[ - "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", "License :: OSI Approved :: Apache Software License", "Operating System :: POSIX :: Linux", ], long_description=long_description, long_description_content_type="text/markdown", - python_requires=">=3.8,<3.11", - install_requires=["monai>=1.3.1", "nvflare~=2.5.0rc"], + python_requires=">=3.9,<3.13", + install_requires=["monai>=1.3.1", "nvflare~=2.5.1rc"], ) diff --git a/setup.cfg b/setup.cfg index 759494a153..38390df607 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,6 @@ long_description_content_type = text/markdown; charset=UTF-8 license_files = LICENSE classifiers = - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 @@ -16,7 +15,7 @@ classifiers = [options] zip_safe = True -python_requires = >= 3.8 +python_requires = >=3.9, <3.13 install_requires = cryptography>=36.0.0 Flask==3.0.2