Update mozjs and setuptools (#30685)

This should fix issues with Python 3.12 on Mac builders.

Co-authored-by: Samson <16504129+sagudev@users.noreply.github.com>
This commit is contained in:
Martin Robinson 2023-11-02 17:55:12 +01:00 committed by GitHub
parent f8ec3df495
commit 8fd370784e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 7 deletions

View file

@ -70,10 +70,6 @@ jobs:
fetch-depth: 2 fetch-depth: 2
- name: Run sccache-cache - name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3 uses: mozilla-actions/sccache-action@v0.0.3
- name: Select Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install taplo - name: Install taplo
uses: baptiste0928/cargo-install@v2 uses: baptiste0928/cargo-install@v2
with: with:

4
Cargo.lock generated
View file

@ -3611,7 +3611,7 @@ checksum = "903970ae2f248d7275214cf8f387f8ba0c4ea7e3d87a320e85493db60ce28616"
[[package]] [[package]]
name = "mozjs" name = "mozjs"
version = "0.14.1" version = "0.14.1"
source = "git+https://github.com/servo/mozjs#ec63ca39efb346c414e0f55ef26e63c0b17ee69a" source = "git+https://github.com/servo/mozjs#f452fb2e642e158893a094b62956b5f40e015c3e"
dependencies = [ dependencies = [
"bindgen 0.68.1", "bindgen 0.68.1",
"cc", "cc",
@ -3625,7 +3625,7 @@ dependencies = [
[[package]] [[package]]
name = "mozjs_sys" name = "mozjs_sys"
version = "0.68.2" version = "0.68.2"
source = "git+https://github.com/servo/mozjs#ec63ca39efb346c414e0f55ef26e63c0b17ee69a" source = "git+https://github.com/servo/mozjs#f452fb2e642e158893a094b62956b5f40e015c3e"
dependencies = [ dependencies = [
"bindgen 0.68.1", "bindgen 0.68.1",
"cc", "cc",

View file

@ -5,7 +5,8 @@ blessings == 1.7
distro == 1.4 distro == 1.4
mozinfo == 1.2.1 mozinfo == 1.2.1
mozlog == 7.1.0 mozlog == 7.1.0
setuptools == 65.5.1 setuptools == 68.2.2; python_version >= "3.8"
setuptools == 65.5.1; python_version < "3.8"
toml == 0.9.2 toml == 0.9.2
dataclasses == 0.8; python_version < "3.7" dataclasses == 0.8; python_version < "3.7"