Skip to content

Commit

Permalink
Python version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AKuHAK committed Jun 3, 2022
1 parent 19a99e0 commit 9efe263
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- name: Install dependencies
run: |
apk add build-base git zip python2 python2-dev
apk add build-base git zip python python-dev
apk add tiff-dev jpeg-dev openjpeg-dev zlib-dev freetype-dev lcms2-dev libwebp-dev tcl-dev tk-dev harfbuzz-dev fribidi-dev libimagequant-dev libxcb-dev libpng-dev
python -m ensurepip
pip install --upgrade pip setuptools wheel
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ IndieFlower.s: resources/IndieFlower-Regular.ttf
$(BIN2S) $^ $@ $(^F)

resources/%: resources/%.png
python2 resources/conv.py $^ $@
python3 resources/conv.py $^ $@

include $(PS2SDK)/samples/Makefile.pref
include $(PS2SDK)/samples/Makefile.eeglobal
2 changes: 1 addition & 1 deletion resources/RLE24.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def encode(line):

def encodeRLE24(img):
width, height = img.size
output = ''
output = b''

for h in range(height):
line = []
Expand Down

0 comments on commit 9efe263

Please sign in to comment.