Matt Clarke
Matt Clarke
There's also [python-launcher for unix](https://python-launcher.app) which also provides a `py` command (and is waaaay faster than pyenv et al). Might be worth tying it to the presence of a `py`...
We have this snippet we use: ```python class DagsterDeploymentType(Flag): PROD = auto() BRANCH = auto() LOCAL = auto() CLOUD = PROD | BRANCH DEV = BRANCH | LOCAL def get_current_env()...
@gibsondan A simple use case is when we add jobs that should only be present in local/branch deployments for creating/dropping zero copy clones of our prod database: ``` if get_current_env()...
I think that's more targeted at monorepos containing multiple packages. You might want to have a monorepo in a workspace with packages, in development have a sparse checkout of the...
I think using `pip` as a noun (...verb? both?) here will make people draw parallels which aren't necessarily wanted/helpful when learning the new tool. Especially if the long term goal...
This one is pretty important for us. Loading data in to pandas just to turn it in to polars, and back. Pretty long winded way of saying "grab this data"....