Kound
Kound
I would be also very interested in this (also this specific issue, automatic pinning). But also I have other use cases in which it would be helpful to rewrite/extend existing...
As a workaround I am currently using: ```python class FixedMySqlContainer(MySqlContainer): def get_container_host_ip(self) -> str: if inside_container() and Path("/run/docker.sock").exists(): return self.get_docker_client().gateway_ip(self._container.id) return super().get_container_host_ip() ``` which works well in the gitlab ci...
I guess the problem is that everybody know the workaround for **their** env but we are lacking a deep enough understanding to find a general solution. Currently I don't have...
Ok I did some rather intensive digging with our gitlab-ci and locally on my linux machine. Running local outside of docker the following three combinations work: - ✅ [1] '172.17.0.1'...
@RafalSkolasinski Thank's for running it. Mac seems strange. You can ignore the output, it is only for you to see what is happening. The `output.txt` is the interesing part as...
Also pyscaffold implemented a simple `-interactive` mode: https://github.com/pyscaffold/pyscaffold#quickstart
@fschulze would be open for such a feature? If yes I would see if I am able to implement it within the next months and create a PR.
I am aware of https://github.com/pypa/hatch/issues/1712 / https://pypi.org/project/hatch-external-dependencies/ but ```python type(self.build_config).core_metadata_constructor = metadata_constructor_extended ``` Just feels like a hack to me, that I would not like to rely on.