Commit 623ab6f 1 parent 4f373a2 commit 623ab6f Copy full SHA for 623ab6f
File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 63
63
run : pip freeze
64
64
65
65
- name : 🕵️ Check code style & linting
66
- if : matrix.pandas-version == '1.*'
66
+ if : matrix.pandas-version == '1.*' && matrix.python-version == '3.8'
67
67
run : |
68
68
black --check webviz_config tests setup.py
69
69
pylint webviz_config tests setup.py
Original file line number Diff line number Diff line change 46
46
"pyarrow>=0.16" ,
47
47
"pyyaml>=5.1" ,
48
48
"tqdm>=4.8" ,
49
- "importlib_metadata >=1.7; python_version<'3.8'" ,
50
- "typing-extensions>=3.7" , # Needed on Python < 3.8
49
+ "importlib-metadata >=1.7; python_version<'3.8'" ,
50
+ "typing-extensions>=3.7; python_version<' 3.8'" ,
51
51
"webviz-core-components>=0.0.19" ,
52
52
],
53
53
tests_require = TESTS_REQUIRES ,
Original file line number Diff line number Diff line change 22
22
# Python 3.8+
23
23
# pylint: disable=ungrouped-imports
24
24
from importlib .metadata import version # type: ignore
25
- except ModuleNotFoundError :
25
+ from typing import TypedDict # type: ignore
26
+ except (ImportError , ModuleNotFoundError ):
26
27
# Python < 3.8
27
28
from importlib_metadata import version # type: ignore
29
+ from typing_extensions import TypedDict # type: ignore
28
30
29
31
import jinja2
30
- from typing_extensions import TypedDict
31
32
32
33
import webviz_config .plugins
33
34
from webviz_config ._config_parser import SPECIAL_ARGS
You can’t perform that action at this time.
0 commit comments