Skip to content

Commit

Permalink
Add PySide6 dependency for Windows and MacOS
Browse files Browse the repository at this point in the history
We're not yet adding them to Linux, since PySide6 is not yet available
in Linux distro's packages, whereas with Linux and macOS our packaging
process includes the shipped binaries.

For more context, see:
freedomofpress#211
  • Loading branch information
deeplow committed Jan 17, 2023
1 parent 7d0b6d4 commit 3dcd220
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 2 deletions.
78 changes: 77 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ license = "MIT"
python = ">=3.7,<3.11"
click = "*"
appdirs = "*"
PySide2 = "5.15.2.1"
PySide2 = {version = "5.15.2.1", platform = "linux"}
pyside6 = {version = "^6.4.1", markers = "sys_platform == 'win32' or sys_platform == 'darwin'"}
colorama = "*"
pyxdg = {version = "*", platform = "linux"}

Expand Down

0 comments on commit 3dcd220

Please sign in to comment.