Jacek

Results 11 comments of Jacek

As discussed on Slack, sharing my "hack" for hiding Golang code in multi-language repos. 1. Sperate `go_module()` target into a separate `BUILD` file (i.e. `go.BUILD`) 2. Make sure Golang code...

> Nice, should we also modify the github action to build this and publish other tags with it? Or is that already covered? I was planning to do that in...

@MatteoVoges sure thing. I will build it (which I believe I have done it already). I will see if I can also test Github Actions with [act](https://github.com/nektos/act) but if there...

I tested the building Docker image, and it looks good.

@Moep90 we could, but I am pretty sure some people still prefer to use old `pip` (which doesn't require installing `poetry` and is much faster). I suggest keeping both for...

> Hey @gruzewski , The new output looks so much better!!! Thank you for that. Could you merge the pull request that belong to the `init` command (#966 and #964)...

@jkrzemin thanks for the investigation. I tried to pick it up from where you have finished with some progress. The `__file__` issue can be avoided if we add files alongside...

If the fix is to update that file and regenerating the lock file, I might be able to do that :)

@krishnan-chandra is right. I got this error: ```console ERROR: Ignored the following versions that require a different python version: 68.1.0 Requires-Python >=3.8; 68.1.2 Requires-Python >=3.8; 68.2.0 Requires-Python >=3.8; 68.2.1 Requires-Python...

So to clarify, I would: - update the `default_interpreter_constraints` only in [python_tool_base.py](https://github.com/pantsbuild/pants/blob/main/src/python/pants/backend/python/subsystems/python_tool_base.py#L65) - create a test case for the downgraded setuptools* - potentially mention on [Enabling Python Support](https://github.com/pantsbuild/pants/blob/main/docs/docs/python/overview/enabling-python-support.mdx) that by...