freeze requirements, add debug configs
Marco Andronaco andronacomarco@gmail.com
Sun, 12 Feb 2023 21:34:26 +0100
2 files changed,
28 insertions(+),
4 deletions(-)
A
.vscode/launch.json
@@ -0,0 +1,24 @@
+{ + // Usare IntelliSense per informazioni sui possibili attributi. + // Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti. + // Per altre informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: file corrente", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "justMyCode": true + }, + { + "name": "Python: start bot", + "type": "python", + "request": "launch", + "program": "main.py", + "console": "integratedTerminal", + "justMyCode": true + } + ] +}
M
requirements.txt
→
requirements.txt
@@ -1,4 +1,4 @@
-Pillow -python-telegram-bot -python-dotenv -requests +Pillow==9.2.0 +python-dotenv==0.21.0 +python-telegram-bot==13.14 +requests==2.28.1