Francesco Frassinelli
Francesco Frassinelli
This has not been implemented and there is no timeline as far as I know. Earthly can be run on rootless Docker, but it is not able to run `WITH...
Is there any reason why this PR is stuck? Any feedback from @benoitc?
Have a look at: - http://www.hug.rest/website/learn/output_formats - https://github.com/hugapi/hug/issues/793 ```python import csv import io # ... @hug.format.content_type('text/csv') def format_as_csv(data, request=None, response=None): output = io.StringIO() writer = csv.writer(output) for row in data:...
@primary-student I think my function definition is wrong, as `response` is not defined indeed. If you look at the first link I posted, you see some examples where the function...
That solves the issue when also `tdqm` is installed: https://github.com/facebook/prophet/issues/1976#issuecomment-925653723 It looks like https://github.com/facebook/prophet/blob/82f3399409b7646c49280688f59e5a3d2c936d39/python/requirements.txt is ignored.
Thank you, it works, but why should I install `pystan==2.19.1.1` before? Why is it not added as dependency? If I need to add prophet as dependency for another project, I...
I am sorry for bumping this, but is there any news?
@ykzeng sorry to bother you, but could you please provide feedback on this PR?
It looks like there is no way to detect which revision has been cloned using pip. Simple solution: cloning the whole repo every time and displaying a warning (like "please...
Hi :) You are right, it would be better not to do something for git only. I had a look at `poetry` because it fixes versions for packages, even if...