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
[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?
The text was updated successfully, but these errors were encountered:
It looks like you're making a wheel for python 3.9, but you specify python
3.10 for the application, so that's what pynsist will look for wheels for.
The easiest solution is probably to use the same version of python to build
the wheel and to include in your installer.
On Wed, 17 Jan 2024, 17:33 Gaetan Semet, ***@***.***> wrote:
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?
—
Reply to this email directly, view it on GitHub
<#262>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACQB5OQSFAXHGFKN5EATOTYPADP7AVCNFSM6AAAAABB652EJOVHI2DSMVQWIX3LMV43ASLTON2WKOZSGA4DMNRVGU3TENI>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
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?
The text was updated successfully, but these errors were encountered: