fixed error depedency PyQt5-sip when try on virtualenv

This commit is contained in:
mh4x0f 2020-04-17 21:30:38 -03:00
parent d3c43782cf
commit ee594134c8
3 changed files with 9 additions and 2 deletions

View File

@ -29,7 +29,7 @@ jobs:
run: |
python3.7 -m pip install PyQt5==5.14
python3.7 -c "from PyQt5.QtCore import QSettings; print('done')"
make setup
make install
- name: Test
run: make test
- name: Run

View File

@ -117,6 +117,7 @@ All notable changes to this project will be documented in this file.
- Removed all files *.py compiler. [mh4x0f]
### Fixed
- fixed error depedency PyQt5-sip when try on virtualenv [mh4x0f]
- fixed set iptables exception for each rules [mh4x0f]
- fixed typo name on readme.md [mh4x0f]
- fixed disable security auth wireless by default [mh4x0f]

View File

@ -6,7 +6,13 @@ test:
python3.7 -m coverage report
python3.7 -m unittest -v
setup:
install:
find . -name '*.pyc' -delete
python3.7 setup.py install
install_env:
python3.7 -m pip install PyQt5==5.14
python3.7 -c "from PyQt5.QtCore import QSettings; print('done')"
find . -name '*.pyc' -delete
python3.7 setup.py install