Skip to content

Commit 39e62eb

Browse files
authored
Merge pull request #813 from mozilla/upgrade-python-to-3.9
Upgrade to Python 3.9.18 and fix CI compatibility issues
2 parents 193ddfb + 9b9a03c commit 39e62eb

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ jobs:
3131
- uses: actions/checkout@v2
3232
- uses: actions/setup-python@v2
3333
with:
34-
python-version: 3.7
34+
python-version: 3.9.18
35+
- name: Install wheel and pin setuptools for compatibility
36+
run: |
37+
pip install wheel
38+
pip install "setuptools==65.5.1"
3539
- name: Install Python Dependencies
3640
run: |
3741
pip install -r requirements.txt -r dev-requirements.txt

runtime.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.7.8
1+
python-3.9.18

0 commit comments

Comments
 (0)