Hello.
My configuration basically looks like:
[Application]
name=MyCli
version=6.6.4
entry_point=mycli.cli:entry_point_pynsist
console=true
[Python]
version=3.10.11
bitness=64
include_msvcrt=true
[Include]
pypi_wheels=
...
pendulum==2.1.2
...
packages=dateutil
chronometer
pkg_resources
pytz
setuptools
six
# Other files and folders that should be installed
files=../README.md
extra_wheel_sources=../wheelhouse
[Command nestor]
entry_point=mycli.cli:entry_point_pynsist
I execute pip wheel just before in order to fill a wheelhouse folder:
pip --exists-action i wheel -r requirements-frozen.txt -w wheelhouse
I see the wheel for pendulum is well compiled in this folder:
-rw-r--r-- 1 ...... +None 129895 Jan 17 18:05 pendulum-2.1.2-cp39-cp39-win_amd64.whl
But still i get this error:
raise NoWheelError('No compatible wheels found for {0.name} {0.version}'.format(self))
nsist.wheels.NoWheelError: No compatible wheels found for pendulum 2.1.2
Any idea?
Hello.
My configuration basically looks like:
I execute pip wheel just before in order to fill a wheelhouse folder:
I see the wheel for pendulum is well compiled in this folder:
But still i get this error:
Any idea?