Juan Luis Cano Rodríguez

Results 1914 comments of Juan Luis Cano Rodríguez

Thanks for suggesting this feature @cricksmaidiene! I think something very similar to what you have in mind can be achieved by using [ipython-sql](https://pypi.org/project/ipython-sql/), which allows things like these: ``` In...

Different, but related, issue: https://github.com/orchest/orchest/issues/1098

Thanks a lot @yannickperrenet. I think reproducibility and everchanging dependencies are big problems in other services too (continuous integration, Read the Docs, possibly others). I wouldn't worry too much about...

Indeed. Explanation: https://stackoverflow.com/a/24302941/554319 Code: https://github.com/heroku/heroku-buildpack-python/blob/b82ddba7346caeabcf38d215a0c9bffc83d5e9f4/bin/steps/python#L97-L128 This guarantees that, if the `requirements.txt` doesn't change (which would invalidate the cache), the same versions will be installed. However, if the user adds another...

To keep things tidy, let's keep #611 for "implementing terminal access to environments", and repurpose this issue to "document/clarify current terminal behavior".

Thinking about this a bit more, Slack incoming webhooks expect a payload with a specific structure, which can't be changed from the Orchest side. Maybe a payload customization functionality like...

Just checked whether an external workflows tool could turn a custom webhook into a trigger: - Zapier: not in the free plan https://zapier.com/help/create/code-webhooks/send-webhooks-in-zaps - Automate.io: not in the free plan...

Notice that, beyond "peeking" or looking around the environment, this would be useful to run CLI-based tools like meltano, dbt, and the like, as discussed in #938.

> Some tasks need to be run from the command line using dependencies installed in the environment. Examples include: > > - Management commands of meltano, dbt, and more >...

Reference to the upstream IPython issue that prevents interactive commands usage: https://github.com/ipython/ipython/issues/10499