|
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)] |
| 83 | +SUPPORTED_PYTHON_VERSIONS = [(2, 7), (3, 4), (3, 5), (3, 6), (3, 7), (3, 8), (3, 9)] |
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%. |
87 | 87 | PYTHON_SEARCH_PATHS = dict( |
88 | 88 | WINDOWS=[ |
89 | 89 | "C:\\Python*\\", |
| 90 | + "C:\\Pythons\\Python*\\", |
90 | 91 | "%LOCALAPPDATA%\\Programs\\Python\\Python*\\", |
91 | 92 | "C:\\Program Files\\Python*\\", |
92 | 93 | "C:\\Program Files (x86)\\Python*\\", |
@@ -614,7 +615,7 @@ def check_cpp_extension_dependencies_issue359(setup_dir, all_pythons): |
614 | 615 | return |
615 | 616 | checked_any = False |
616 | 617 | for python in all_pythons: |
617 | | - if python["version2"] in ((3, 5), (3, 6), (3, 7)): |
| 618 | + if python["version2"] in ((3, 5), (3, 6), (3, 7), (3, 8), (3, 9)): |
618 | 619 | checked_any = True |
619 | 620 | if not os.path.exists(os.path.join(setup_dir, "cefpython3", |
620 | 621 | "msvcp140.dll")): |
|
0 commit comments