Vyacheslav Rusakov

Results 86 comments of Vyacheslav Rusakov

In case if anyone else needs local modules support, please provide a sample usage example (complete simplified use-case).

Released version [3.0.0](https://github.com/xvik/gradle-use-python-plugin/releases/tag/3.0.0) with [requirements file support](https://xvik.github.io/gradle-use-python-plugin/latest/guide/modules/#requirementstxt). It should be possible now to use any modules using [native requirements syntax](https://pip.pypa.io/en/stable/reference/requirements-file-format/#requirements-file-format). To enable native mode: ```groovy python.requirements.strict = false ``` (this...

Possibly, this would help: ``` python { pythonPath = '/Users/alexcombessie/.pyenv/rosetta/shims/' // pythonBinary = 'python' } ``` I will try to reproduce this with pyenv (never used it before) and try...

You can also try `pythonPath = '~/.pyenv/rosetta/shims/'` - if it would work, it should be acceptable for commit if other devs also use pyenv. I'll, of course, look, but it...

`pythonBinary` declares just a name of the binary so it is not correct to declare complete path here (it should be done with `pythonPath`). To better understand how it works:...

In the upcoming version I added manual search for python binary inside PATH: if binary not found, plugin will fail and error message would contain PATH value. This should simplify...

New version [3.0.0](https://github.com/xvik/gradle-use-python-plugin/releases/tag/3.0.0) released with [auto PATH validation](https://xvik.github.io/gradle-use-python-plugin/latest/guide/python/#global-python-validation)

Hi! You need look at the python output just before the exception. There should be an actual python error. It's impossible to tell anything with just an exception (it's used...

> WARNING: Package(s) not found: virtualenv Yes, looks like your problem. But have no idea how this could happen. I have not seen errors like this before and not sure...

I saw the linked issue only by accident (github didn't notify about it). The problem caused by [parallel tasks execution](https://github.com/airbytehq/airbyte/blob/961ab6693ad4dcb4fa5cdf2a77be42adbf0cf6c9/gradle.properties#L1) ``` > Task :airbyte-integrations:connectors:source-file:checkPython FAILED WARNING: Package(s) not found: virtualenv...