Skip to content

Commit

Permalink
ifx release
Browse files Browse the repository at this point in the history
  • Loading branch information
dickreuter committed Jan 14, 2024
1 parent cc54a29 commit 42d6029
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python application test with GitHub Actions
name: Unit tests

on: [push, pull_request]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
with:
show-progress: false

- name: Setup Python
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: pip


- name: Install Tesseract
run: |
Expand Down
2 changes: 1 addition & 1 deletion poker/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
warnings.filterwarnings("ignore", category=UserWarning)
warnings.filterwarnings("ignore", category=RuntimeWarning)

version = 6.73
version = 6.74
ui = None


Expand Down
7 changes: 7 additions & 0 deletions poker/scraper/table_screen_based.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,13 @@ def check_fast_fold(self, h, p, mouse):
crd2 = crd2.upper()
sheet_name = str(self.position_utg_plus + 1)
if sheet_name == '6': return True
try:
if int(sheet_name[0]) > 6:
old = sheet_name[0]
sheet_name = sheet_name.replace(old, '6', 1)
except Exception as e:
pass

sheet = h.preflop_sheet[sheet_name]
sheet['Hand'] = sheet['Hand'].apply(lambda x: str(x).upper())
handlist = set(sheet['Hand'].tolist())
Expand Down

0 comments on commit 42d6029

Please sign in to comment.