Skip to content

Commit 720fce4

Browse files
Update cffi dependency to 1.15.0rc2 to fix issue with macOS arm (#196)
* Update cffi dependency to 1.15.0rc2 to fix issue with macOS arm
1 parent fbc15ed commit 720fce4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
- name: Install in development mode
9999
run: |
100100
python download-wgpu-native.py
101-
python setup.py develop
101+
pip install -e .
102102
- name: Test on repo
103103
run: |
104104
pytest -v tests

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def finalize_options(self):
2828
else:
2929
pass # don't include binaries; user will have to arrange for the lib
3030

31-
runtime_deps = ["cffi>=1.10", "rubicon-objc>=0.4.1; sys_platform == 'darwin'"]
31+
runtime_deps = ["cffi>=1.15.0rc2", "rubicon-objc>=0.4.1; sys_platform == 'darwin'"]
3232

3333

3434
setup(

0 commit comments

Comments
 (0)