Skip to content

Commit 9d3dacf

Browse files
committed
Bump to Python3
1 parent c31838a commit 9d3dacf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
nsis
3131
pkg-config
3232
protobuf-compiler
33-
python
34-
python-dev
33+
python3
34+
python3-dev
3535
stow
3636
sudo
3737
texinfo

makefile.common

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ all:
137137
$(MAKE) clementine-deps
138138

139139
clean:
140-
realstow=`python -c "import os.path; print os.path.realpath('$(stow)')"`; \
140+
realstow=`python3 -c "import os.path; print os.path.realpath('$(stow)')"`; \
141141
for path in $(stow)/*; do \
142142
directory=`basename $$path`; \
143143
stow -d $$realstow -D $$directory; \
@@ -148,7 +148,7 @@ clean:
148148
-rm .done-*
149149

150150
all-downloads:
151-
python $(src)/downloader/downloader.py --output "$(downloads)"
151+
python3 $(src)/downloader/downloader.py --output "$(downloads)"
152152

153153
boost: .done-boost
154154
cdio: .done-cdio

0 commit comments

Comments
 (0)