You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an old issue that was supposably fixed but when configuring mac wheels on windows it's still trying to install them and run into errors like this when running pipenv install
ERROR: cffi-1.16.0-cp312-cp312-macosx_11_0_universal2.whl is not a supported
And vice versa on mac I have to remove the windows selected package for the same reason.
On mac having these two lines in the file fails from a supposed fix.
Pillow = { version = "*", markers="sys_platform == 'win32'" }
cffi = { version = "*", markers="sys_platform == 'win32'" }
With errors like
raise InstallationError(msg)
pipenv.patched.pip._internal.exceptions.InstallationError: Invalid requirement: 'cffi*': Expected end or semicolon (after name and no valid version specifier)
I'm not sure if this is the same issue. I have git pipenv installed. These local universal2 wheels pipenv is trying to install the pip version not the local wheel when running pipenv install from a fresh shell. And so was reporting not a fat binary and couldn't figure out why. For the websockets wheel mostly.
This is an old issue that was supposably fixed but when configuring mac wheels on windows it's still trying to install them and run into errors like this when running
pipenv install
And vice versa on mac I have to remove the windows selected package for the same reason.
On mac having these two lines in the file fails from a supposed fix.
With errors like
Full pipenv file
The text was updated successfully, but these errors were encountered: