removed compile options

This commit is contained in:
Robert Walter
2024-04-08 16:28:49 +02:00
parent cbbc060a49
commit 2b8ac5324e
2 changed files with 4 additions and 6 deletions

5
.gitignore vendored
View File

@@ -1,4 +1,3 @@
.venv .venv
build
check_dns_advanced.spec
dist

View File

@@ -1,8 +1,7 @@
## How to build ## How to install
``` ```
python -m venv .venv python -m venv .venv
source .venv/bin/activate source .venv/bin/activate
pip install -U pip pip install -U pip
pip install -r requirements pip install -r requirements.txt
pyinstaller --onefile check_dns_advanced.py --collect-all importlib --collect-all h2 --collect-all httpx --collect-all httpcore
``` ```