File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,15 @@ jobs:
104
104
- uses : actions/checkout@v2
105
105
with :
106
106
fetch-depth : 2
107
+ # TODO: Remove this step when the compatibility issue between mozjs and
108
+ # Homebrew's Python 3.10 formula (servo/rust-mozjs#559) is fixed
109
+ - name : Select Python 3.9
110
+ run : |
111
+ brew install python@3.9
112
+ cd $(dirname $(which python3.9))
113
+ rm -f python3 pip3
114
+ ln -s python3.9 python3
115
+ ln -s pip3.9 pip3
107
116
- name : Bootstrap
108
117
run : |
109
118
python3 -m pip install --upgrade pip virtualenv
Original file line number Diff line number Diff line change 39
39
- uses : actions/checkout@v2
40
40
with :
41
41
fetch-depth : 2
42
+ # TODO: Remove this step when the compatibility issue between mozjs and
43
+ # Homebrew's Python 3.10 formula (servo/rust-mozjs#559) is fixed
44
+ - name : Select Python 3.9
45
+ run : |
46
+ brew install python@3.9
47
+ cd $(dirname $(which python3.9))
48
+ rm -f python3 pip3
49
+ ln -s python3.9 python3
50
+ ln -s pip3.9 pip3
42
51
- name : Bootstrap
43
52
run : |
44
53
python3 -m pip install --upgrade pip virtualenv
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ distro == 1.4
6
6
mozdebug == 0.3
7
7
mozinfo == 1.2.1
8
8
mozlog == 7.1.0
9
- setuptools == 60.8.1
9
+ setuptools == 65.3.0
10
10
toml == 0.9.2
11
11
12
12
# For Python linting
You can’t perform that action at this time.
0 commit comments