Skip to content

Commit

Permalink
Updates for mac-os build
Browse files Browse the repository at this point in the history
Add py2app to requirements.txt for macos only
Fix bug in init:default: pass in env dir for `python -m venv`
This is all just testing for getting mac build going on github actions
  • Loading branch information
cwhelchel committed Mar 31, 2024
1 parent 7f2eb7d commit 65ba6b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"init": "npm install && run-script-os",
"init:windows": "python -m venv .venv && .\\.venv\\Scripts\\pip install -r requirements.txt",
"init:linux": "python3 -m venv .venv && if [[ -z \"${KDE_FULL_SESSION}\" ]]; then npm run init:qt5; else npm run init:gtk; fi",
"init:default": "python -m venv && .venv/bin/pip install -r requirements.txt",
"init:default": "python -m venv .venv && .venv/bin/pip install -r requirements.txt",
"init:qt5": ".venv/bin/pip install pyqt5 pyqtwebengine -r requirements.txt",
"init:gtk": "sudo apt install libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0 && .venv/bin/pip install pycairo pygobject -r requirements.txt",
"start": "npm run frontend:dev && run-script-os",
Expand Down
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,20 @@ certifi==2024.2.2
cffi==1.16.0
charset-normalizer==3.3.2
clr-loader==0.2.6
future==1.0.0; platform_system == "Darwin"
greenlet==3.0.3
idna==3.6
importlib-metadata==7.0.1
macholib==1.16.3; platform_system == "Darwin"
Mako==1.3.2
MarkupSafe==2.1.5
marshmallow==3.20.2
marshmallow-sqlalchemy==1.0.0
modulegraph==0.19.6; platform_system == "Darwin"
packaging==23.2
pefile==2023.2.7
proxy-tools==0.1.0
py2app==0.28.7; platform_system == "Darwin"
pycairo==1.26.0; platform_system == "Linux"
pycparser==2.21
PyGObject==3.48.1; platform_system == "Linux"
Expand All @@ -27,6 +31,7 @@ pywin32==306; platform_system == "Windows"
pywin32-ctypes==0.2.2; platform_system == "Windows"
requests==2.31.0
SQLAlchemy==2.0.26
tornado==6.4; platform_system == "Darwin"
typing_extensions==4.9.0
urllib3==2.2.0
zipp==3.17.0

0 comments on commit 65ba6b2

Please sign in to comment.