From 05955b5ef120b3b70bd5f4d3940203be31b7176b Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Thu, 5 Sep 2024 10:00:34 +0100 Subject: [PATCH] cffi 1.17.1 --- .github/workflows/build.yml | 10 +++++----- setup.py | 2 +- version.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 02be0d9..72979b9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,7 +51,7 @@ jobs: - name: Build raylib-python-cffi run: | python -m pip install --upgrade pip - pip3 install "cffi>=1.17.0rc1" + pip3 install "cffi>=1.17.1" pip3 install wheel pip3 install setuptools python setup.py bdist_wheel --plat-name macosx_10_15_x86_64 @@ -201,7 +201,7 @@ jobs: - name: Build raylib-python-cffi run: | python -m pip install --upgrade pip - pip3 install "cffi>=1.17.0rc1" + pip3 install "cffi>=1.17.1" pip3 install wheel pip3 install setuptools python setup.py bdist_wheel --plat-name manylinux2014_x86_64 @@ -283,7 +283,7 @@ jobs: - name: Build raylib-python-cffi run: | python -m pip install --upgrade pip - pip3 install "cffi>=1.17.0rc1" + pip3 install "cffi>=1.17.1" pip3 install wheel pip3 install setuptools del raylib\dynamic\*.so* >nul 2>&1 @@ -335,7 +335,7 @@ jobs: - name: Build raylib-python-cffi run: | python -m pip install --upgrade pip - pip3 install "cffi>=1.17.0rc1" + pip3 install "cffi>=1.17.1" pip3 install wheel pip3 install setuptools python setup.py sdist @@ -366,7 +366,7 @@ jobs: - name: Build raylib-python-cffi-dynamic run: | python -m pip install --upgrade pip - pip3 install "cffi>=1.17.0rc1" + pip3 install "cffi>=1.17.1" pip3 install wheel pip3 install setuptools cd dynamic diff --git a/setup.py b/setup.py index db835ae..4b957b2 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ setup( ], packages=["raylib", "pyray"], include_package_data=True, - install_requires=["cffi>=1.17.0rc1"], + install_requires=["cffi>=1.17.1"], distclass=BinaryDistribution, cffi_modules=["raylib/build.py:ffibuilder"] ) diff --git a/version.py b/version.py index ef94f4f..ec17f13 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = "5.0.0.4.dev0" \ No newline at end of file +__version__ = "5.0.0.4.dev1" \ No newline at end of file