File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
9
9
steps :
10
- - uses : actions/checkout@v2
10
+ - uses : actions/checkout@v3
11
11
- name : Set up Python
12
- uses : actions/setup-python@v2
12
+ uses : actions/setup-python@v4
13
13
with :
14
- python-version : ' 3.9 '
14
+ python-version : ' 3.11 '
15
15
- name : Install dependencies
16
16
run : |
17
17
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 4
4
import json
5
5
import logging
6
6
7
- from collections import defaultdict , Iterable
7
+ from collections import defaultdict
8
+ from collections .abc import Iterable
8
9
from pathlib import Path
9
10
from typing import Any
10
11
from urllib .parse import urlparse
Original file line number Diff line number Diff line change 3
3
import json
4
4
import logging
5
5
6
- from collections import deque , Iterable
6
+ from collections import deque
7
+ from collections .abc import Iterable
7
8
from os import scandir
8
9
from pathlib import Path
9
10
from shutil import copy
You can’t perform that action at this time.
0 commit comments