pyca / pynacl

Python binding to the Networking and Cryptography (NaCl) library

Home Page:https://pynacl.readthedocs.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wheels not updated for 3.11.7 on Windows (MinGW)

PMahar opened this issue · comments

Hate to rehash this issue but trying to install PyNaCl on 3.11.7 on MSYS2 fails, stating it can't find make.

Commands tried:
python3 -m pip install pynacl and python3 -m pip install -U "nextcord[voice]"
(Nextcord is a library I'm using for a discord bot, a dependency of which being pynacl)

Errors from those commands, respectively:
image
image

I've already tried updating pip with pip install --upgrade pip and installing setuptools with pip install setuptools, as recommended here: #746.

To verify that make is, in fact, on my path:
image

Is there anything we can do about this on our end?

The wheels we publish are abi3 wheels, they work with all supported versions of python3. If your pip is not automatically installing them, that indicates some issue with your pip (most likely that it's out of date and that your attempt to upgrade it did not work.)

Hi Alex, thank you for the quick reply. I ran get-pip just now to make sure I had the right version, and it appears to have downloaded 23.3.2, the latest. Still fails with the same issue.

image

Gah, I was worried about that, though it's understandable. I'll work with a linux VM for now. Thanks anyway!