1
0
Fork 0
mirror of synced 2024-05-18 03:22:42 +12:00

Rare: add orjson dependency

This commit is contained in:
loathingKernel 2023-12-06 10:39:09 +02:00
parent 5be24a4d89
commit e2a7047933
No known key found for this signature in database
GPG key ID: CE0C72D0B53821FD
5 changed files with 6 additions and 2 deletions

View file

@ -12,7 +12,7 @@ script:
# copy Logo
- cp AppDir/usr/src/rare/resources/images/Rare.png AppDir/usr/share/icons/hicolor/256x256/apps/
# Install application dependencies
- python3 -m pip install --ignore-installed --prefix=/usr --root=AppDir pypresence qtawesome legendary-gl typing_extensions
- python3 -m pip install --ignore-installed --prefix=/usr --root=AppDir pypresence qtawesome legendary-gl orjson typing_extensions
AppDir:
path: AppDir

View file

@ -32,6 +32,7 @@ pywebview = [
{ version = "^3.6.3", extras = ["gtk"], platform = "freebsd", optional = true },
]
legendary-gl = "^0.20.34"
orjson = "^3.8.0"
typing-extensions = "^4.3.0"
[tool.poetry.scripts]

View file

@ -3,7 +3,8 @@ requests
PyQt5
QtAwesome
setuptools
legendary-gl
legendary-gl>=0.20.33
orjson
pywin32; platform_system == "Windows"
pywebview[qt]; platform_system == "Linux"
pywebview[qt]; platform_system == "FreeBSD"

View file

@ -4,4 +4,5 @@ PyQt5
QtAwesome
setuptools
legendary-gl>=0.20.34
orjson
pywin32; platform_system == "Windows"

View file

@ -8,6 +8,7 @@ with open("README.md", "r") as fh:
requirements = [
"requests<3.0",
"legendary-gl>=0.20.34",
"orjson",
"setuptools",
"wheel",
"PyQt5",