Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

👷 Fix broken setup workflow #938

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading