manu

Results 38 comments of manu

Pretty sure this is an issue with the "Transport Layer", (NAPALM -> netmiko). Are you sure the NAPALM driver you are using works? What if you use `nxos` instead of...

I think upgrading the helm version should remove many of the findings related to conatinerd / docker (since the current helm releases already upgraded their versions of containerd / docker...

I am not sure I understand the issue correctly. AFAIK, the weaknesses of SHA-1 are only related to being able to create collisions (if input A creates a hash value...

yeah, you only need to specify them explicitly in the `pyproject.toml` file (with constrints, if you wish, like "needs at least verion X.Y of package Z"). The file `poetry.lock` is...

According to the [docs](https://python-poetry.org/docs/pyproject/), we can just specify those in `pyproject.toml`, e.g. `repository = "https://github.com/initialcommit-com/git-sim"` So it would look something like this: ```toml [tool.poetry] name = "git-sim" version = "0.1.2"...

Hi @buhtz, thanks for your input on this. I was not aware that you can also specify dependencies in `pyproject.toml`, that's super neat! -> That kinda obsoletes the usage of...

@abhijitnathwani I am not sure if you saw it in the discussion of #43, [HERE](https://typer.tiangolo.com/tutorial/subcommands/nested-subcommands/) are the docs for nested subcommands in Typer :)

@initialcommit-io yeah I think the whole imports / packages / modules stuff is one of the more confusing parts of python, I find myself trying to make sense of it...

We could of course also just rename the file `git_sim.py`, `git_sim_foo.py` worked for me (`import git_sim.git_sim_foo as gs` in the `__main__.py` file) :laughing:

Yeah, that works for me :thinking: (updated my branch accordingly)