Sebastian Weigand

Results 135 comments of Sebastian Weigand

I see your point and thanks for sharing the post. But on the other hand, IMHO you have to trust some organizations like `github` or `pypa`, that the tools they...

@webknjaz If you want I can make a PR with a workflow to generate/automate the major version tags and you can add a detailed explanation of the security considerations. Sharded...

> > > Oh, I remember: haya14busa/action-update-semver that was submitted to another action I have doesn't support PEP440 versions, like `.dev0` or `.post0` suffixes that I like to use. I...

Since this is a docker action and we save all the js bundeling stuff, the main points are parsing the version (e.g. using `pkg_resources.parse_version` and passing the tag as a...

What I was talking about was just a python script, which decides whether to push minor/major tags, and does it if it should.

Sadly YOLO style doesn't work since `shell: python` is python 2.7 (RIP) and I want my f-strings 🤣

@webknjaz While it is true that the idea behind tags is that they are immutable, github themselves rewrites them for major releases of their own actions (e.g. https://github.com/actions/cache/releases). I can...

Ok point taken. Also, I wasn't idealizing the decision of GH to overwrite tags. It was more like that the meaning of minor/major tags are different in a GH-action context,...

I would also love to use this together with `mypy` (thanks for the package by the way ❤️ ). It might be possible to implement using `mypy` plugins 🤔 Never...

Postponed annotations are still an issue with `0.0.14`, hence [the ruff setting](https://github.com/tiangolo/sqlmodel/blob/b892504141c842975b7a30156ab21755719e1d31/pyproject.toml#L119). I guess it has to do with all [the `very dark black magic` that `SQLAlchemy`](https://github.com/tiangolo/sqlmodel/blob/b892504141c842975b7a30156ab21755719e1d31/sqlmodel/main.py#L697) does 😅 I...