Guilherme Beltramini

Results 9 comments of Guilherme Beltramini

There are indeed many ways to manage dependencies in Python. We tested `Pipfile` and `poetry`. Both didn't seem to add any special advantage and their usage was not widespread. We...

And thanks for raising this discussion. Things change, new formats are adopted, and we want to keep up with the community. So we are always open to change. `pip-tools` is...

@NeolithEra , thanks for the thorough report. Is this still an issue? I think that `pip check` should catch this, and [the test that ran in the last PR](https://app.circleci.com/pipelines/github/nubank/fklearn/913/workflows/0c63dac8-9690-44ad-8faf-20b40b5abf58/jobs/2606) was...

The same comments that I made on #136 apply here.

You could do something like this: ``` python def request(url, retry_options): @retry(**retry_options) def request_retry(*args, **kwargs): print 'Running request...' raise IOError('Error!') return "TADA" return request_retry(url) try: request("someurl", retry_options=dict(stop_max_attempt_number=3)) except IOError as...

Maybe this helps: ``` python from retrying import retry, Retrying rt = Retrying(wait_exponential_multiplier=1000) def log_retry(fn): def fn_with_logging(*args, **kwargs): print 'Attempt {:d} failed after {:d} milliseconds'.format(args[0], args[1]) return fn(*args, **kwargs) return...

@zebralight, to install this version: ```bash $ pip install git+git://github.com/mccahill/ipython-sql.git ```

Fixed in commit b52e09a. As of now, [PyPI](https://pypi.python.org/pypi/ipython-sql) doesn't have this fix, but you can install the latest (and fixed) version with: ```bash $ git clone [email protected]:catherinedevlin/ipython-sql.git $ cd ipython-sql/...

Did you install it the way I suggested? What is the result of running this in the terminal? ```bash pip freeze | grep ipython-sql ``` The current version is 0.3.9.