Skip to content

Commit

Permalink
Version 1.7.1
Browse files Browse the repository at this point in the history
Libs updated
  • Loading branch information
filak committed Mar 6, 2025
1 parent 4f33468 commit 466fa4c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion flask-app/application/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def create_app(debug=False, logger=None, port=5900,
app.config.update(dict(
APPLICATION_ROOT = url_prefix,
APP_NAME = 'MTW',
APP_VER = '1.7.0',
APP_VER = '1.7.1',
API_VER = '1.0.0',
DBVERSION = 1.0,
CACHE_DIR = mtu.get_instance_dir(app, 'cache'),
Expand Down
2 changes: 1 addition & 1 deletion flask-app/mtw-server.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
DEFAULT_PREFIX = 'mtw'

appname = 'mtw-server'
appdesc = 'MTW Server 1.7.0'
appdesc = 'MTW Server 1.7.1'
appusage = 'Help: ' + appname + ' -h \n'
appauthor = 'Filip Kriz'

Expand Down
19 changes: 9 additions & 10 deletions flask-app/mtw_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
### Version 1.7.0
### Version 1.7.1 ###
### Python 3.12 ###
arrow==1.3.0
bcrypt==4.2.1 ## NOT python-bcrypt !!!
cachelib==0.9.0 ## Stick to 0.9.0 OR run after pip install -r ... :
# pip install cachelib --upgrade --force
certifi==2024.12.14
bcrypt==4.3.0 ## NOT python-bcrypt !!!
cachelib==0.13.0
certifi==2025.1.31
cffi==1.17.1
colorama==0.4.6
diff_match_patch==20241021
Flask==3.1.0
Flask-Caching==2.3.0
Flask-Caching==2.3.1
# Flask-Limiter==3.10.1 ## NOT used yet
Flask-Paranoid==0.3.0
Flask-SeaSurf==2.0.0
Expand All @@ -18,18 +17,18 @@ flask-talisman==1.1.0
future==0.18.3
idna==3.10
itsdangerous==2.2.0
Jinja2==3.1.5
Jinja2==3.1.6
MarkupSafe==3.0.2
pip_audit==2.7.3 ## Run: pip freeze > requirements.txt ; pip-audit ; pip-audit -r mtw_requirements.txt
pip_audit==2.8.0 ## Run: pip freeze > requirements.txt ; pip-audit ; pip-audit -r mtw_requirements.txt
pyuca==1.2
requests==2.32.3
requests_futures==1.0.2
urllib3==1.26.20
waitress==3.0.2
Werkzeug==3.1.3
### (optional) If building for Windows:
pyinstaller==6.11.1; sys_platform == "win32"
pyinstaller-hooks-contrib==2025.0; sys_platform == "win32"
pyinstaller==6.12.0; sys_platform == "win32"
pyinstaller-hooks-contrib==2025.1; sys_platform == "win32"
## Install pywin32
pywin32==308; sys_platform == "win32"
## and run in CMD as Admin with activated VENV (!):
Expand Down

0 comments on commit 466fa4c

Please sign in to comment.