Skip to content

Commit 2c8819c

Browse files
author
linesight
committed
update misc place for py311 support
1 parent e67aa83 commit 2c8819c

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ support old operating systems then choose the v31 release.
154154

155155
OS | Py2 | Py3 | 32bit | 64bit | Requirements
156156
--- | --- | --- | --- | --- | ---
157-
Windows | 2.7 | 3.4 / 3.5 / 3.6 / 3.7 / 3.8 | Yes | Yes | Windows 7+
158-
Linux | 2.7 | 3.4 / 3.5 / 3.6 / 3.7 3.8 | Yes | Yes | Debian 8+, Ubuntu 14.04+,<br> Fedora 24+, openSUSE 13.3+
159-
Mac | 2.7 | 3.4 / 3.5 / 3.6 / 3.7 / 3.8 | No | Yes | MacOS 10.9+
157+
Windows | 2.7 | 3.4 / 3.5 / 3.6 / 3.7 / 3.8 / 3.9 / 3.10 / 3.11 | Yes | Yes | Windows 7+
158+
Linux | 2.7 | 3.4 / 3.5 / 3.6 / 3.7 3.8 / 3.9 / 3.10 / 3.11 | Yes | Yes | Debian 8+, Ubuntu 14.04+,<br> Fedora 24+, openSUSE 13.3+
159+
Mac | 2.7 | 3.4 / 3.5 / 3.6 / 3.7 / 3.8 / 3.9 / 3.10 / 3.11 | No | Yes | MacOS 10.9+
160160

161161
These platforms are not supported yet:
162162
- ARM - see [Issue #267](../../issues/267)

src/extern/cef/cef_ptr.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ cdef extern from "include/internal/cef_ptr.h":
1818
CefRefPtr[T]& Assign "operator="(nullptr_t)
1919
CefRefPtr[T]& Assign "operator="(T* p)
2020
bool operator bool()
21-
bool operator!()
21+
bool operator!()

tools/build_distrib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
ALLOW_PARTIAL = False
8181

8282
# 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)]
83+
SUPPORTED_PYTHON_VERSIONS = [(2, 7), (3, 4), (3, 5), (3, 6), (3, 7), (3, 8), (3, 9), (3, 10), (3, 11)]
8484

8585
# Python search paths. It will use first Python found for specific version.
8686
# Supports replacement of one environment variable in path eg.: %ENV_KEY%.

tools/make_installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ def create_empty_log_file(log_file):
338338

339339
def copy_cpp_extension_dependencies_issue359(pkg_dir):
340340
"""CEF Python module is written in Cython and is a Python C++
341-
extension and depends on msvcpXX.dll. For Python 3.5 / 3.6 / 3.7 / 3.8 / 3.9
341+
extension and depends on msvcpXX.dll. For Python 3.5 / 3.6 / 3.7 / 3.8 / 3.9 / 3.10 / 3.11
342342
msvcp140.dll is required. See Issue #359. For Python 2.7
343343
msvcp90.dll is required. Etc. These dependencies are not included
344344
with Python binaries from Python.org."""

0 commit comments

Comments
 (0)