Skip to content

Commit

Permalink
Bump up the version of monai-nvflare package to 0.2.8 (#2749)
Browse files Browse the repository at this point in the history
Also update its nvflare version to ~=2.5.0rc1, monai to >=1.3.1
  • Loading branch information
IsaacYangSLA authored Aug 2, 2024
1 parent 6f500dc commit de9ef95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration/monai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
release = os.environ.get("MONAI_NVFL_RELEASE")
if release == "1":
package_name = "monai-nvflare"
version = "0.2.4"
version = "0.2.9"
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.3.{year:02d}{month:02d}{day:02d}"
version = f"0.2.9.{year:02d}{month:02d}{day:02d}"

setup(
name=package_name,
Expand All @@ -57,5 +57,5 @@
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.8,<3.11",
install_requires=["monai>=1.3.0", "nvflare==2.4.0rc6"],
install_requires=["monai>=1.3.1", "nvflare~=2.5.0rc1"],
)

0 comments on commit de9ef95

Please sign in to comment.