I'm building a Pulumi provider from a Terraform on...
# contribute
f
I'm building a Pulumi provider from a Terraform one, using Pulumi's boilerplate as usual. I built another one last week which works fine. The current one is having issues when testing the Python SDK. In particular, it doesn't work because it seems like
wheel
is needed in the virtualenv, but it's not present in the virtualenv. It also doesn't work when I add
wheel
to my test project's
requirements.txt
file. Has anyone else run into this before? Thanks.
l
A difference in the pulumi-terraform-bridge version maybe? Can you check the versions between these projects in the respective
provider/go.mod
and
sdk/go.mod
files?
Latest version for the bridge is v3.21.0
f
I've got 3.21.0 in the new provider; the old provider has 3.29.1 3.20.0. However, I also just went and deleted the virtual environment from a test project in the old provider and tried recreating it, and I get the same broken behavior 🤔
Not quite sure what's going on, but it appears to be something with my machine; it works just fine in CI 🤷