Skip to content

Commit

Permalink
Attempt to squash Windows Defender false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Nov 22, 2020
1 parent 1e71b7f commit c7adf09
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,14 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
pip install certifi https://github.com/pyinstaller/pyinstaller/archive/develop.zip
pip install certifi
git clone https://github.com/pyinstaller/pyinstaller.git
cd pyinstaller
git checkout tags/v4.1
cd bootloader
python waf all
cd ..
pip install -e .
- name: Build binary
run: pyinstaller --additional-hooks-dir=Hooks/ -y -F -i CurseBreaker.ico -n CurseBreaker -c --noupx --exclude-module FixTk --exclude-module tcl --exclude-module tk --exclude-module _tkinter --exclude-module tkinter --exclude-module Tkinter CurseBreaker.py
- name: Upload binary
Expand All @@ -39,7 +46,7 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
pip install certifi https://github.com/pyinstaller/pyinstaller/archive/develop.zip
pip install certifi pyinstaller
- name: Build binary
run: pyinstaller --additional-hooks-dir=Hooks/ -y -F -n CurseBreaker -c -s --noupx --exclude-module FixTk --exclude-module tcl --exclude-module tk --exclude-module _tkinter --exclude-module tkinter --exclude-module Tkinter CurseBreaker.py
- name: Upload binary
Expand All @@ -57,7 +64,7 @@ jobs:
run: |
python3 -m pip install --upgrade pip setuptools wheel
pip3 install -r requirements.txt
pip3 install certifi https://github.com/pyinstaller/pyinstaller/archive/develop.zip
pip3 install certifi pyinstaller
- name: Build binary
run: pyinstaller --additional-hooks-dir=Hooks/ -y -F -n CurseBreaker -c -s --noupx --exclude-module FixTk --exclude-module tcl --exclude-module tk --exclude-module _tkinter --exclude-module tkinter --exclude-module Tkinter CurseBreaker.py
- name: Upload binary
Expand Down
2 changes: 1 addition & 1 deletion CB/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import random
from rich.terminal_theme import TerminalTheme

__version__ = '3.15.1'
__version__ = '3.15.2'
__license__ = 'GPLv3'
__copyright__ = '2019-2020, Paweł Jastrzębski <pawelj@iosphe.re>'
__docformat__ = 'restructuredtext en'
Expand Down

0 comments on commit c7adf09

Please sign in to comment.