We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I tried today to use this command to add new wheels to an existing pyodide-lock.json
pyodide lockfile add-wheels
Unfortunately it did not append any dependencies to an existing file. After some digging I figured out that the error is in this file:
https://github.com/pyodide/pyodide-lock/blob/main/pyodide_lock/cli.py#L50
The following code fixes it:
sp = PyodideLockSpec.from_json(input) sp = add_wheels_to_spec( sp, wheels, base_path=base_path, base_url=wheel_url, ignore_missing_dependencies=ignore_missing_dependencies, ) sp.to_json(output)
The text was updated successfully, but these errors were encountered:
vega-datasets
Successfully merging a pull request may close this issue.
Hello,
I tried today to use this command to add new wheels to an existing pyodide-lock.json
Unfortunately it did not append any dependencies to an existing file. After some digging I figured out that the error is in this file:
https://github.com/pyodide/pyodide-lock/blob/main/pyodide_lock/cli.py#L50
The following code fixes it:
The text was updated successfully, but these errors were encountered: