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 461ebaa
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 30 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
59 changes: 33 additions & 26 deletions requirements_win.txt
Original file line number Diff line number Diff line change
@@ -1,30 +1,37 @@
pandas==2.0.3
pytest
pylint
pydocstyle
numpy
fastapi==0.101.1
h5py==3.8.0
keras==2.12.0
lmfit==1.2.0
matplotlib==3.7.2
scipy
opencv-python
pillow
notebook==6.5.4
numexpr==2.8.4
numpy==1.23.5
opencv-python==4.8.0.76
openpyxl==3.1.2
pandas==2.0.3
Pillow==9.5.0
pycparser==2.21
pydocstyle==6.3.0
pyinstaller==5.13.0
pylint==2.17.2
pymongo==4.3.3
pyqt6
virtualbox
pyyaml
requests
jupyter
xlib
xlrd
lmfit
openpyxl
numexpr==2.8.4
fastapi==0.101.1
tensorflow
tqdm
seaborn
PyJWT==1.7.0
flask_jwt_extended
fastapi_auth
uvicorn==0.23.2
PyQt5==5.15.9
PyQt6==6.5.2
pytesseract==0.3.10
pytest==7.3.1
PyYAML==6.0
QtPy==2.3.1
requests==2.28.2
scipy==1.10.1
seaborn==0.12.2
Sphinx==7.2.5
tensorboard==2.12.2
tensorflow==2.12.0
tesserocr
tornado==6.3.1
tqdm==4.65.0
uvicorn==0.23.2
virtualbox==2.1.1
Werkzeug==2.2.3
xlib==0.21
xlrd==2.0.1

0 comments on commit 461ebaa

Please sign in to comment.