Compare commits

..

No commits in common. "main" and "v2.1.0" have entirely different histories.
main ... v2.1.0

2 changed files with 5 additions and 13 deletions

View File

@ -1,6 +1,6 @@
[Application]
name=Solo Auswertung
version=2.1.1
version=2.1.0
# How to launch the app - this calls the 'main' function from the 'myapp' package:
entry_point=main:main
# icon=myapp.ico
@ -17,18 +17,10 @@ console=true
# Packages from PyPI that your application requires, one per line
# These must have wheels on PyPI:
pypi_wheels = beautifulsoup4==4.12.3
blinker==1.8.2
click==8.1.7
colorama==0.4.6
coloredlogs==15.0.1
flask==3.0.3
humanfriendly==10.0
itsdangerous==2.2.0
jinja2==3.1.4
markupsafe==2.1.5
soupsieve==2.5
flask==3.0.2
tabulate==0.9.0
werkzeug==3.0.3
colorama==0.4.6
packages = solo_turnier

View File

@ -1,6 +1,8 @@
import argparse
import logging
import debugpy
class Cli:
def __init__(self, l: logging.Logger):
@ -48,8 +50,6 @@ class Cli:
self.__args = parser.parse_args()
if self.__args.debug:
import debugpy
debugpy.listen(5678)
debugpy.wait_for_client()