Add CI workflow and NuGet publishing automation#1
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| @@ -0,0 +1 @@ | |||
| print("get-pip placeholder") | |||
There was a problem hiding this comment.
Ship real get-pip bootstrapper
The Init flow copies get-pip.py next to the library, runs it to install pip, and then creates the virtual environment. The committed get-pip.py is only print("get-pip placeholder"), so executing it never installs pip. As a result the new virtual environment will be created without pip and InstallRequirement will reliably fail (python -m pip install exits non‑zero) whenever dependencies are installed. This file needs to contain the actual get‑pip bootstrap script or the code should use another supported mechanism such as python -m ensurepip.
Useful? React with 👍 / 👎.
Summary
Testing
Codex Task