Skip to content

Commit 9d1964b

Browse files
committed
Update github workflow .yml files
1 parent b237e94 commit 9d1964b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
# Install dev. requirements
2525
- name: Install deps
2626
run: pip install -r dev_requirements.txt
27+
# Build wheel file
28+
- name: Build wheel
29+
run: python setup.py bdist_wheel
2730
# Install the wheel using pip
28-
- name: Install package
31+
- name: Install wheel
2932
run: pip install dist/nedry*.whl

.pylintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ disable=raw-checker-failed,
429429
useless-suppression,
430430
deprecated-pragma,
431431
use-symbolic-message-instead,
432-
#wrong-import-order,
432+
wrong-import-order,
433433
unused-argument,
434434
too-many-arguments,
435435
consider-using-dict-items,

0 commit comments

Comments
 (0)