[release] Update version to "2024.1.0" and to "develop" status

This commit is contained in:
Candice Bentéjac 2023-12-11 11:28:29 +00:00
parent 1503056559
commit 8210187621

View file

@ -8,9 +8,9 @@ class VersionStatus(Enum):
release = 1
develop = 2
__version__ = "2023.3.0"
__version__ = "2024.1.0"
# Always increase the minor version when switching from release to develop.
__version_status__ = VersionStatus.release
__version_status__ = VersionStatus.develop
if __version_status__ is VersionStatus.develop:
__version__ += "-" + __version_status__.name