mirror of
https://github.com/Cronocide/wifipumpkin3.git
synced 2025-01-22 11:18:55 +00:00
fixed error depedency PyQt5-sip when try on virtualenv
This commit is contained in:
parent
d3c43782cf
commit
ee594134c8
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -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
|
||||
|
@ -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]
|
||||
|
8
makefile
8
makefile
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user