fix linux compatibility, add requests to poetry

This commit is contained in:
Prohurtz 2023-04-01 15:23:11 -07:00
parent c1f63dd400
commit e621c8197c
2 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,7 @@ import threading
import PySimpleGUI as sg import PySimpleGUI as sg
import os import os
import requests import requests
if is_nt:
from winotify import Notification from winotify import Notification
os.system('color') # init ANSI color os.system('color') # init ANSI color

View File

@ -14,6 +14,7 @@ numpy = "~1.23.5"
pye3d = "^0.3.1.post1" pye3d = "^0.3.1.post1"
pysimplegui = "^4.60.4" pysimplegui = "^4.60.4"
pydantic = "^1.10.2" pydantic = "^1.10.2"
requests = "~2.2.8.2"
winotify = [ winotify = [
{ version = "^1.1.0", platform = 'win32' } { version = "^1.1.0", platform = 'win32' }
] ]