camilo-s
camilo-s
Thanks @cnpryer for pointing this out. _Originally posted by @camilo-s in https://github.com/astral-sh/rye/issues/759#issuecomment-2037687739_ > Any chance that Twine's `--config-file` option could be dispatched as well? > In my current use-case, this...
Any chance that Twine's `--config-file` option could be dispatched as well? In my current use-case, this would support the [`TwineAuthenticate@1` task from Azure Pipelines](https://learn.microsoft.com/en-us/azure/devops/pipelines/tasks/reference/twine-authenticate-v1?view=azure-pipelines#publish-python-distribution-to-azure-artifacts-feed)
I just had the same problem as above already while creating an external location! Terraform started creating it and after some time it failed with the error: ``` Error: cannot...
Sorry for my belated reply @mgyucht. The debug logs got cut when piped as suggested by your GitHub Issue template . I haven't been able...
To be able to speak the permission assignment API at the account level, I tried using `databricks_mws_permission_assignment` instead. The Provider is able to make the API call, which returns a...
@TakeshiMatsukura thanks for your reply. The behavior in my case was similar (see my second _factoid_ above). I manually set `databricks_sql_access = false`, then terraform didn't recognize this, but it...
This would be a great feature indeed. A useful intermediate solution would be if the `JobSettings`' `as_dict` method accepted a flag allowing it to serialize it *not completely* but shallowly,...
Here's a dirty workaround: ```python job_settings = JobSettings.from_dict(job_settings_dict) w.jobs.create(**job_settings.__dict__) ```