File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 14
14
- uses : actions/checkout@v2
15
15
16
16
- name : Setup black environment
17
- run : conda create --quiet --name black pyflakes
17
+ run : conda create --quiet --name black
18
18
19
19
- name : Check formatting with black
20
20
run : |
27
27
run : |
28
28
export PATH="/usr/share/miniconda/bin:$PATH"
29
29
source activate black
30
+ pip install pyflakes==2.4.0
30
31
pyflakes scompose/utils
31
32
# Will have some issues
32
33
pyflakes scompose/client scompose/project scompose/config || true
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ The versions coincide with releases on pypi.
15
15
16
16
## [ 0.0.x] ( https://github.com/singularityhub/singularity-compose/tree/master ) (0.0.x)
17
17
18
+ - fix module import used by check command (0.0.13)
18
19
- adding jsonschema validation and check command (0.0.12)
19
20
- implement configuration override feature
20
21
- implement ` --preview ` argument for the ` check ` command
Original file line number Diff line number Diff line change 10
10
11
11
from scompose .logger import bot
12
12
from scompose .config import merge_config
13
- from scompose .config .validate import validate_config
13
+ from scompose .config .schema import validate_config
14
14
import yaml
15
15
16
16
You can’t perform that action at this time.
0 commit comments