File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -113,18 +113,18 @@ pre-commit: .git/hooks/pre-commit ## Create the pre-commit hook
113
113
# Linting and code analysis
114
114
.PHONY : black
115
115
black : venv # # Format the code using black
116
- $(BLACK ) --safe --line-length 120 --target-version py35 $(PACKAGE_DIR )
117
- $(BLACK ) --safe --line-length 120 --target-version py35 $(TEST_DIR )
116
+ $(BLACK ) --safe --line-length 120 --target-version py38 $(PACKAGE_DIR )
117
+ $(BLACK ) --safe --line-length 120 --target-version py38 $(TEST_DIR )
118
118
ifneq ("$(wildcard setup.py) ", "")
119
- $(BLACK) --safe --line-length 120 --target-version py35 setup.py
119
+ $(BLACK) --safe --line-length 120 --target-version py38 setup.py
120
120
endif
121
121
122
122
.PHONY : lint-black
123
123
lint-black : venv # # Check that the code is formatted using black
124
- $(BLACK ) --check --line-length 120 --safe --target-version py35 $(PACKAGE_DIR )
125
- $(BLACK ) --check --line-length 120 --safe --target-version py35 $(TEST_DIR )
124
+ $(BLACK ) --check --line-length 120 --safe --target-version py38 $(PACKAGE_DIR )
125
+ $(BLACK ) --check --line-length 120 --safe --target-version py38 $(TEST_DIR )
126
126
ifneq ("$(wildcard setup.py) ", "")
127
- $(BLACK) --check --line-length 120 --safe --target-version py35 setup.py
127
+ $(BLACK) --check --line-length 120 --safe --target-version py38 setup.py
128
128
endif
129
129
130
130
.PHONY : lint-flake8
You can’t perform that action at this time.
0 commit comments