Skip to content

Commit

Permalink
Bump up monai_nvflare version
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacYangSLA committed May 9, 2024
1 parent 5171404 commit 5498c7d
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.7"
version = "0.2.8"
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.6.{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.1rc3"],
install_requires=["monai>=1.3.0", "nvflare~=2.4.1rc8"],
)

0 comments on commit 5498c7d

Please sign in to comment.