Maxim Martynov

Results 76 issues of Maxim Martynov

New official repo for Elixir docker image: https://github.com/erlef/docker-elixir Please do not create issues & pull requests here, current repo author is not responding for years.

Hello. I found a beautiful solution of automatic updates of emails.txt file using Github Actions. Here is the source: https://github.com/lindell/go-burner-email-providers/blob/main/.github/workflows/build.yaml How it works: 1. Github Actions is starting every day...

Hello. I see that Dependabot integration is set up on your repo. Here I propose to add an automatic step of merging pull requests from this bot if tests have...

Hi. I've tried to use both absinthe-relay (for pagination) and dataloader (for handling N+1 problem) in the same project. But I haven't found some working way to combine them in...

Before 0.3.51: ```python from pyhocon import ConfigFactory, HOCONConverter conf = ConfigFactory.parse_string('key: 10s') # ConfigTree([('key', '10s')]) HOCONConverter.to_json(conf) # '{\n "key": "10s"\n}' HOCONConverter.to_yaml(conf) # 'key: 10s' HOCONConverter.to_hocon(conf) # 'key = "10s"' HOCONConverter.to_properties(conf)...

Hello. `pip search` API was disabled in December 2020 because of a lot of performance issues: https://github.com/pypa/pip/issues/5216#issuecomment-744605466 So tests cases using this feature are also failing now. It's time to...

Hello. This package is directly calling `virtualenv` executable. But it could be not installed in the current environment. Especially in case of Python 3 there it was replaced with new...

Since January 2020 virtualenv package was completely rewritten (v20+). It does not create `no-global-site-packages.txt` file anymore, that's why tests are failing now. In this PR I've added few new methods:...

Fixes https://github.com/sjkingo/virtualenv-api/issues/47

`raise` starts new exception traceback, so the original exception message will be lost. Prefer `six.reraise` to preserve it.