|
80 | 80 | ALLOW_PARTIAL = False |
81 | 81 |
|
82 | 82 | # Python versions |
83 | | -SUPPORTED_PYTHON_VERSIONS = [(2, 7), (3, 4), (3, 5), (3, 6), (3, 7), (3, 8), (3, 9), (3.10), (3.11), (3.12), (3.13)] |
| 83 | +SUPPORTED_PYTHON_VERSIONS = [(2, 7), (3, 4), (3, 5), (3, 6), (3, 7), (3, 8), (3, 9), (3.10), (3.11), (3.12), (3.13), (3.14)] |
84 | 84 |
|
85 | 85 | # Python search paths. It will use first Python found for specific version. |
86 | 86 | # Supports replacement of one environment variable in path eg.: %ENV_KEY%. |
@@ -615,7 +615,7 @@ def check_cpp_extension_dependencies_issue359(setup_dir, all_pythons): |
615 | 615 | return |
616 | 616 | checked_any = False |
617 | 617 | for python in all_pythons: |
618 | | - if python["version2"] in ((3, 5), (3, 6), (3, 7), (3, 8), (3, 9), (3, 10), (3, 11), (3.12), (3.13)): |
| 618 | + if python["version2"] in ((3, 5), (3, 6), (3, 7), (3, 8), (3, 9), (3, 10), (3, 11), (3.12), (3.13), (3.14)): |
619 | 619 | checked_any = True |
620 | 620 | if not os.path.exists(os.path.join(setup_dir, "cefpython3", |
621 | 621 | "msvcp140.dll")): |
|
0 commit comments