Skip to content

Commit

Permalink
fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dickreuter committed Jan 15, 2024
1 parent 2d077f0 commit fd03fb7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions poker/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from poker.tools.mouse_mover import MouseMoverTableBased
from poker.tools.update_checker import UpdateChecker

# pylint: disable=no-member,simplifiable-if-expression,protected-access,line-too-long,use-fstring-for-concatenation,refactoring:missing-module-dosctring,
# pylint: disable=no-member,simplifiable-if-expression,protected-access,line-too-long,refactoring:missing-module-docstring,

warnings.filterwarnings("ignore", category=matplotlib.MatplotlibDeprecationWarning)
warnings.filterwarnings("ignore", message="ignoring `maxfev` argument to `Minimizer()`. Use `max_nfev` instead.")
Expand All @@ -39,7 +39,7 @@
warnings.filterwarnings("ignore", category=UserWarning)
warnings.filterwarnings("ignore", category=RuntimeWarning)

version = 6.76
version = 6.77
ui = None


Expand Down
7 changes: 5 additions & 2 deletions poker/tools/mongo_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@

import pandas as pd
import requests
from PIL import Image
from fastapi.encoders import jsonable_encoder
from PIL import Image
from requests.exceptions import JSONDecodeError

from poker.tools.helper import COMPUTER_NAME, get_config, get_dir
from poker.tools.singleton import Singleton
from requests.exceptions import JSONDecodeError

# pylint: disable=raise-missing-from

TABLES_COLLECTION = 'tables'

Expand Down Expand Up @@ -44,6 +46,7 @@ def save_image(self, table_name, label, image):
response = requests.post(URL + "update_table_image", json={'pil_image': encoded,
'label': label,
'table_name': table_name}).json()
return response

def update_table_image(self, pil_image, label, table_name):
"""update table image"""
Expand Down
12 changes: 6 additions & 6 deletions requirements_win.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ pylint
pydocstyle
numpy
matplotlib==3.7.2
scipy
opencv-python
pillow
scipy==1.10.1
opencv-python==4.7.0.72
pillow==9.5.0
pyinstaller==5.13.0
pymongo==4.3.3
pyqt6
pyqt6==6.5.0
virtualbox
pyyaml
requests
Expand All @@ -20,9 +20,9 @@ lmfit
openpyxl
numexpr==2.8.4
fastapi==0.101.1
tensorflow
tensorflow==2.12.0
tqdm
seaborn
seaborn==0.12.2
PyJWT==1.7.0
flask_jwt_extended
fastapi_auth
Expand Down

0 comments on commit fd03fb7

Please sign in to comment.