mirror of
https://github.com/naruxde/revpicommander.git
synced 2025-11-08 16:43:53 +01:00
build: Use system python interpreter in make file
This commit is contained in:
2
.idea/vcs.xml
generated
2
.idea/vcs.xml
generated
@@ -3,6 +3,8 @@
|
|||||||
<component name="CommitMessageInspectionProfile">
|
<component name="CommitMessageInspectionProfile">
|
||||||
<profile version="1.0">
|
<profile version="1.0">
|
||||||
<inspection_tool class="BodyLimit" enabled="true" level="WARNING" enabled_by_default="true" />
|
<inspection_tool class="BodyLimit" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
|
<inspection_tool class="CommitFormat" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
|
<inspection_tool class="CommitNamingConvention" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
<inspection_tool class="SubjectBodySeparation" enabled="true" level="WARNING" enabled_by_default="true" />
|
<inspection_tool class="SubjectBodySeparation" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
<inspection_tool class="SubjectLimit" enabled="true" level="WARNING" enabled_by_default="true" />
|
<inspection_tool class="SubjectLimit" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
</profile>
|
</profile>
|
||||||
|
|||||||
4
Makefile
4
Makefile
@@ -9,7 +9,7 @@ APP_IDENT = org.revpimodio.revpicommander
|
|||||||
APPLE_SIG = "Developer ID Application: Sven Sager (U3N5843D9K)"
|
APPLE_SIG = "Developer ID Application: Sven Sager (U3N5843D9K)"
|
||||||
|
|
||||||
# If virtualenv exists, use it. If not, use PATH to find, except python3
|
# If virtualenv exists, use it. If not, use PATH to find, except python3
|
||||||
SYSTEM_PYTHON = /usr/bin/python3
|
SYSTEM_PYTHON = python3
|
||||||
PYTHON = $(or $(wildcard venv/bin/python), $(SYSTEM_PYTHON))
|
PYTHON = $(or $(wildcard venv/bin/python), $(SYSTEM_PYTHON))
|
||||||
SYSTEM_PYUIC5 = $(shell which pyuic5)
|
SYSTEM_PYUIC5 = $(shell which pyuic5)
|
||||||
PYUIC5 = $(or $(wildcard venv/bin/pyuic5), $(SYSTEM_PYUIC5))
|
PYUIC5 = $(or $(wildcard venv/bin/pyuic5), $(SYSTEM_PYUIC5))
|
||||||
@@ -26,7 +26,7 @@ all: build_ui build_rc build
|
|||||||
|
|
||||||
## Environment
|
## Environment
|
||||||
venv:
|
venv:
|
||||||
$(SYSTEM_PYTHON) -m venv venv
|
$(SYSTEM_PYTHON) -m venv --system-site-packages venv
|
||||||
source venv/bin/activate && \
|
source venv/bin/activate && \
|
||||||
python3 -m pip install --upgrade pip && \
|
python3 -m pip install --upgrade pip && \
|
||||||
python3 -m pip install -r requirements.txt
|
python3 -m pip install -r requirements.txt
|
||||||
|
|||||||
Reference in New Issue
Block a user