1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Refs #34900 -- Fixed CommandTypes.test_help_default_options_with_custom_arguments test on Python 3.13+.

c4a2e8a2c5
This commit is contained in:
Mariusz Felisiak
2024-02-20 20:59:26 +01:00
committed by GitHub
parent e626716c28
commit 3426a5c33c
2 changed files with 12 additions and 4 deletions

View File

@@ -20,6 +20,7 @@ PY39 = sys.version_info >= (3, 9)
PY310 = sys.version_info >= (3, 10)
PY311 = sys.version_info >= (3, 11)
PY312 = sys.version_info >= (3, 12)
PY313 = sys.version_info >= (3, 13)
def get_version(version=None):