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
I currently have a setup.cfg with numpy==1.19.5 as dependency. When I rebuild a requirements.txt using pip-compile on Windows 10, it adds a line numpy==1.19.5+mkl which later on can't be found by my Linux Jenkins instance. How can I tell pip-compile to stop adding +mkl as a suffix to the version?
Thanks
Ingo
Environment Versions
Windows 10 (when run pip-compile) but Linux (when run pip-sync)
Python version: Python 3.6
pip version: 21.2.2
pip-tools version: 6.2.0
Steps to replicate
Have a setup.cfg with a
[options]
install_requires =
numpy==1.19.5
run pip-compile
Have a look at your requirements.txt for a line numpy==1.19.5+mkl `
Expected result
It should be numpy==1.19.5
Actual result
numpy==1.19.5+mkl
The text was updated successfully, but these errors were encountered:
I currently have a setup.cfg with
numpy==1.19.5
as dependency. When I rebuild a requirements.txt usingpip-compile
on Windows 10, it adds a linenumpy==1.19.5+mkl
which later on can't be found by my Linux Jenkins instance. How can I tellpip-compile
to stop adding+mkl
as a suffix to the version?Thanks
Ingo
Environment Versions
Steps to replicate
pip-compile
requirements.txt
for a linenumpy==1.19.5+mkl
`Expected result
It should be
numpy==1.19.5
Actual result
numpy==1.19.5+mkl
The text was updated successfully, but these errors were encountered: