We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f54bab commit 809573fCopy full SHA for 809573f
1 file changed
mitransient/version.py
@@ -3,8 +3,8 @@
3
4
# Mitsuba minimum and maximum compatible versions
5
__mi_version_min__ = '3.6.0'
6
-__mi_version_latest__ = '3.7.0'
7
-__mi_version_max__ = '3.8.0'
+__mi_version_latest__ = '3.8.0'
+__mi_version_max__ = '3.9.0'
8
9
10
class Version:
@@ -55,7 +55,7 @@ def check_compatibility():
55
if mitsuba_version == Version('3.7.1'):
56
mi.Log(mi.LogLevel.Warn,
57
f'Mitsuba v{mitsuba_version} has a known issue that causes it to crash when used with mitransient. '
58
- f'To avoid this, downgrade Mitsuba to v3.7.0 (You can use the command `pip install -U mitsuba==3.7.0`).')
+ f'To avoid this, upgrade Mitsuba to v3.8.0 or higher (You can use the command `pip install -U mitsuba==3.8.0`).')
59
60
if mitsuba_version < mitsuba_supported_min:
61
raise RuntimeError(
0 commit comments