fix poetry on linux

This commit is contained in:
Ondrej Samohel 2021-02-05 18:27:03 +01:00
parent 35dcbce894
commit 1f419c0a83
9 changed files with 219 additions and 139 deletions

View file

@ -11,7 +11,8 @@ aiohttp_json_rpc = "*" # TVPaint server
acre = { git = "https://github.com/pypeclub/acre.git" }
opentimelineio = [
{ git = "https://github.com/pypeclub/OpenTimelineIO.git", branch="develop", markers = "sys_platform == 'win32'" },
{ git = "https://github.com/PixarAnimationStudios/OpenTimelineIO.git", markers = "sys_platform == 'darwin'" }
{ git = "https://github.com/PixarAnimationStudios/OpenTimelineIO.git", markers = "sys_platform == 'darwin'" },
{ git = "https://github.com/PixarAnimationStudios/OpenTimelineIO.git", markers = "sys_platform == 'linux'" }
]
appdirs = "^1.4.3"
blessed = "^1.17" # pype terminal formatting
@ -33,7 +34,10 @@ speedcopy = "^2.1"
six = "^1.15"
wsrpc_aiohttp = "^3.1.1" # websocket server
pywin32 = { version = "300", markers = "sys_platform == 'win32'" }
jinxed = { version = "^1.0.1", markers = "sys_platform == 'darwin'" }
jinxed = [
{ version = "^1.0.1", markers = "sys_platform == 'darwin'" },
{ version = "^1.0.1", markers = "sys_platform == 'linux'" }
]
[tool.poetry.dev-dependencies]
flake8 = "^3.7"