Skip to content

Commit 05955b5

Browse files
cffi 1.17.1
1 parent df2bbcc commit 05955b5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Build raylib-python-cffi
5252
run: |
5353
python -m pip install --upgrade pip
54-
pip3 install "cffi>=1.17.0rc1"
54+
pip3 install "cffi>=1.17.1"
5555
pip3 install wheel
5656
pip3 install setuptools
5757
python setup.py bdist_wheel --plat-name macosx_10_15_x86_64
@@ -201,7 +201,7 @@ jobs:
201201
- name: Build raylib-python-cffi
202202
run: |
203203
python -m pip install --upgrade pip
204-
pip3 install "cffi>=1.17.0rc1"
204+
pip3 install "cffi>=1.17.1"
205205
pip3 install wheel
206206
pip3 install setuptools
207207
python setup.py bdist_wheel --plat-name manylinux2014_x86_64
@@ -283,7 +283,7 @@ jobs:
283283
- name: Build raylib-python-cffi
284284
run: |
285285
python -m pip install --upgrade pip
286-
pip3 install "cffi>=1.17.0rc1"
286+
pip3 install "cffi>=1.17.1"
287287
pip3 install wheel
288288
pip3 install setuptools
289289
del raylib\dynamic\*.so* >nul 2>&1
@@ -335,7 +335,7 @@ jobs:
335335
- name: Build raylib-python-cffi
336336
run: |
337337
python -m pip install --upgrade pip
338-
pip3 install "cffi>=1.17.0rc1"
338+
pip3 install "cffi>=1.17.1"
339339
pip3 install wheel
340340
pip3 install setuptools
341341
python setup.py sdist
@@ -366,7 +366,7 @@ jobs:
366366
- name: Build raylib-python-cffi-dynamic
367367
run: |
368368
python -m pip install --upgrade pip
369-
pip3 install "cffi>=1.17.0rc1"
369+
pip3 install "cffi>=1.17.1"
370370
pip3 install wheel
371371
pip3 install setuptools
372372
cd dynamic

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def has_ext_modules(foo):
4040
],
4141
packages=["raylib", "pyray"],
4242
include_package_data=True,
43-
install_requires=["cffi>=1.17.0rc1"],
43+
install_requires=["cffi>=1.17.1"],
4444
distclass=BinaryDistribution,
4545
cffi_modules=["raylib/build.py:ffibuilder"]
4646
)

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.0.0.4.dev0"
1+
__version__ = "5.0.0.4.dev1"

0 commit comments

Comments
 (0)