Skip to content

Commit

Permalink
Merge pull request #938 from kivy/feature/fix_setup_workflow
Browse files Browse the repository at this point in the history
👷 Fix broken setup workflow
  • Loading branch information
AndreMiras authored Sep 26, 2024
2 parents 53612cc + 10cadf5 commit d8ba971
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
python -m venv venv
. venv/bin/activate
pip install dist/kivy-ios-*.tar.gz
pip install dist/kivy_ios-*.tar.gz
pip install Cython==0.29.36
brew install autoconf automake libtool pkg-config
- name: Basic toolchain commands
Expand Down
3 changes: 1 addition & 2 deletions kivy_ios/toolchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import zipfile
import tarfile
import importlib
import io
import json
import shutil
import fnmatch
Expand Down Expand Up @@ -99,7 +98,7 @@ def __init__(self, filename):
self.data = {}
if exists(filename):
try:
with io.open(filename, encoding='utf-8') as fd:
with open(filename, encoding='utf-8') as fd:
self.data = json.load(fd)
except ValueError:
logger.warning("Unable to read the state.db, content will be replaced.")
Expand Down

0 comments on commit d8ba971

Please sign in to comment.