Skip to content

Commit 9ccdc52

Browse files
committed
[FIX] core: bump max supported python version
1 parent d80b348 commit 9ccdc52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

odoo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import sys
1919
MIN_PY_VERSION = (3, 10)
20-
MAX_PY_VERSION = (3, 12)
20+
MAX_PY_VERSION = (3, 13)
2121
assert sys.version_info > MIN_PY_VERSION, f"Outdated python version detected, Odoo requires Python >= {'.'.join(map(str, MIN_PY_VERSION))} to run."
2222

2323
#----------------------------------------------------------

0 commit comments

Comments
 (0)