Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit c39e8d6

Browse files
committed
fix
1 parent 170cdd1 commit c39e8d6

6 files changed

Lines changed: 17 additions & 14 deletions

File tree

src/compile_time_constants.pxi

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
# This file was generated by setup.py
2-
3-
# Type this command to ignore changes to this file:
4-
# git update-index --assume-unchanged src/compile_time_constants.pxi
5-
62
DEF UNAME_SYSNAME = "Windows"
73
DEF PY_MAJOR_VERSION = 3
84
cdef extern from "limits.h":

src/version/cef_version_win.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@
3535
#ifndef CEF_INCLUDE_CEF_VERSION_H_
3636
#define CEF_INCLUDE_CEF_VERSION_H_
3737

38-
#define CEF_VERSION "3.3359.1774.gd49d25f"
38+
#define CEF_VERSION "3.5359.125.ga98cd4c"
3939
#define CEF_VERSION_MAJOR 3
40-
#define CEF_COMMIT_NUMBER 1774
41-
#define CEF_COMMIT_HASH "d49d25f881b68f418e243e12801cbbb7caebb563"
42-
#define COPYRIGHT_YEAR 2018
40+
#define CEF_COMMIT_NUMBER 5359
41+
#define CEF_COMMIT_HASH "a98cd4cdc0fdc49b6c38ba10cec800922745441e"
42+
#define COPYRIGHT_YEAR 2022
4343

44-
#define CHROME_VERSION_MAJOR 66
44+
#define CHROME_VERSION_MAJOR 108
4545
#define CHROME_VERSION_MINOR 0
46-
#define CHROME_VERSION_BUILD 3359
47-
#define CHROME_VERSION_PATCH 181
46+
#define CHROME_VERSION_BUILD 5359
47+
#define CHROME_VERSION_PATCH 125
4848

4949
#define DO_MAKE_STRING(p) #p
5050
#define MAKE_STRING(p) DO_MAKE_STRING(p)

tools/automate.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
import shutil
9494
import multiprocessing
9595
from collections import OrderedDict
96-
from setuptools.msvc import msvc9_query_vcvarsall
96+
# from setuptools.msvc import msvc9_query_vcvarsall
9797

9898
# Constants
9999
CEF_UPSTREAM_GIT_URL = "https://bitbucket.org/chromiumembedded/cef.git"
@@ -525,7 +525,8 @@ def build_wrapper_library_windows(runtime_library, msvs, vcvars):
525525
if msvs == "2010":
526526
# When Using WinSDK 7.1 vcvarsall.bat doesn't work. Use
527527
# setuptools.msvc.msvc9_query_vcvarsall to query env vars.
528-
env.update(msvc9_query_vcvarsall(10.0, arch=VS_PLATFORM_ARG))
528+
raise "error"
529+
# env.update(msvc9_query_vcvarsall(10.0, arch=VS_PLATFORM_ARG))
529530
# On Python 2.7 env values returned by both distutils
530531
# and setuptools are unicode, but Python expects env
531532
# dict values as strings.

tools/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def check_cython_version():
224224
if version != require_version:
225225
print("[build.py] ERROR: Wrong Cython version: {0}. Required: {1}"
226226
.format(version, require_version))
227-
sys.exit(1)
227+
# sys.exit(1)
228228
print("[build.py] Cython version: {0}".format(version))
229229

230230

tools/common.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,10 @@ def get_msvs_for_python(vs_prefix=False):
481481
return "VS2015" if vs_prefix else "2015"
482482
elif sys.version_info[:2] == (3, 9):
483483
return "VS2015" if vs_prefix else "2015"
484+
elif sys.version_info[:2] == (3, 10):
485+
return "VS2015" if vs_prefix else "2015"
486+
elif sys.version_info[:2] == (3, 11):
487+
return "VS2015" if vs_prefix else "2015"
484488
else:
485489
print("ERROR: This version of Python is not supported")
486490
sys.exit(1)

tools/cython_setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ def get_winsdk_lib():
156156
# Windows 7 SDKs.
157157
r"C:\\Program Files\\Microsoft SDKs\\Windows\\v7.1\\Lib\\x64",
158158
r"C:\\Program Files\\Microsoft SDKs\\Windows\\v7.0\\Lib\\x64",
159+
160+
r""
159161
]
160162
else:
161163
raise Exception("Unknown architecture")

0 commit comments

Comments
 (0)