We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5171404 commit 5498c7dCopy full SHA for 5498c7d
integration/monai/setup.py
@@ -24,14 +24,14 @@
24
release = os.environ.get("MONAI_NVFL_RELEASE")
25
if release == "1":
26
package_name = "monai-nvflare"
27
- version = "0.2.7"
+ version = "0.2.8"
28
else:
29
package_name = "monai-nvflare-nightly"
30
today = datetime.date.today().timetuple()
31
year = today[0] % 1000
32
month = today[1]
33
day = today[2]
34
- version = f"0.2.6.{year:02d}{month:02d}{day:02d}"
+ version = f"0.2.9.{year:02d}{month:02d}{day:02d}"
35
36
setup(
37
name=package_name,
@@ -57,5 +57,5 @@
57
long_description=long_description,
58
long_description_content_type="text/markdown",
59
python_requires=">=3.8,<3.11",
60
- install_requires=["monai>=1.3.0", "nvflare~=2.4.1rc3"],
+ install_requires=["monai>=1.3.0", "nvflare~=2.4.1rc8"],
61
)
0 commit comments