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
{{ message }}
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
Installing "youtokentome" with pip version 23.1 fails with "ModuleNotFoundError: No module named 'Cython'" error but is successful with pip version 23.0.1.
Collecting youtokentome
Using cached youtokentome-1.0.6.tar.gz (86 kB)
Installing build dependencies ... done
Getting requirements to build wheel ... error
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [17 lines of output]
Traceback (most recent call last):
File "/data/venv/lib64/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 353, in<module>main()
File "/data/venv/lib64/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 335, in main
json_out['return_val'] = hook(**hook_input['kwargs'])
File "/data/venv/lib64/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 118, in get_requires_for_build_wheel
return hook(config_settings)
File "/tmp/pip-build-env-e96nfhi5/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 341, in get_requires_for_build_wheel
return self._get_build_requires(config_settings, requirements=['wheel'])
File "/tmp/pip-build-env-e96nfhi5/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 323, in _get_build_requires
self.run_setup()
File "/tmp/pip-build-env-e96nfhi5/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 487, in run_setup
super(_BuildMetaLegacyBackend,
File "/tmp/pip-build-env-e96nfhi5/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 338, in run_setup
exec(code, locals())
File "<string>", line 5, in<module>
ModuleNotFoundError: No module named 'Cython'
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> See above for output.
note: This error originates from a subprocess, and is likely not a problem with pip.
Collecting youtokentome
Using cached youtokentome-1.0.6.tar.gz (86 kB)
Preparing metadata (setup.py) ... done
Collecting Click>=7.0
Using cached click-8.1.3-py3-none-any.whl (96 kB)
Installing collected packages: Click, youtokentome
DEPRECATION: youtokentome is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. pip 23.1 will enforce this behaviour change. A possible replacement is to enable the '--use-pep517' option. Discussion can be found at https://github.com/pypa/pip/issues/8559
Running setup.py install for youtokentome ... done
Successfully installed Click-8.1.3 youtokentome-1.0.6
The result of "pip freeze" at the end of both sets of commands:
# for the one with pip 23.1
Cython==0.29.34
# for the one with pip 23.0.1
lick==8.1.3
Cython==0.29.34
youtokentome==1.0.6
The error happens at this line of code in setuptools that runs the code in the setup.py script of "youtokentome". To be exact, the error is at line 5 in setup.py.
The text was updated successfully, but these errors were encountered:
DEPRECATION: youtokentome is being installed using the legacy 'setup.py install' method, because it
does not have a 'pyproject.toml' and the 'wheel' package is not installed.
pip 23.1 will enforce this behaviour change. A possible replacement is to enable the '--use-pep517' option.
Discussion can be found at https://github.com/pypa/pip/issues/8559
Installing "youtokentome" with pip version 23.1 fails with "ModuleNotFoundError: No module named 'Cython'" error but is successful with pip version 23.0.1.
Running with pip 23.1 (last release at the time of writing):
Gives the following error:
Running with pip 23.0.1 (second to last release):
Installing "youtokentome" now is successful:
The result of "pip freeze" at the end of both sets of commands:
The error happens at this line of code in setuptools that runs the code in the setup.py script of "youtokentome". To be exact, the error is at line 5 in setup.py.
The text was updated successfully, but these errors were encountered: