Open davidjmeyer opened 11 months ago
Seems pretty major. Can anyone merge the PR, or find a workaround?
I was able to work around this by using the downgrade mentioned in the top comment via CFLAGS
. Specifically, I ran
export CFLAGS="-Wno-error=int-conversion"
before running
python3 -m pip install -r requirements.txt
Since I was also running into #118, my requirements.txt
contained the following:
PyOpenGL @ git+https://github.com/mcfletch/pyopengl.git@release-3.1.8#egg=PyOpenGL
PyOpenGL_accelerate @ git+https://github.com/mcfletch/pyopengl.git@release-3.1.8#egg=PyOpenGL_accelerate&subdirectory=accelerate
(copied from a comment on that issue).
I also tried to get -Wno-error=int-conversion
to work through requirements.txt
via --config-settings
- i.e., without using CFLAGS
, but I was unsuccessful.
Clang 15 has upgraded
-Wint-conversion
from a warning to a default error, and this means we cannot buildpyopengl-accelerate
I get the following error:
See release notes: https://releases.llvm.org/15.0.0/tools/clang/docs/ReleaseNotes.html