Dmitry Volodin
Dmitry Volodin
I suppose we want to add the check for types to CI eventually? Any ideas on what tool to use? MyPy, Pyright?
> Setuptools is apparently going away Hm, I'm not aware of this, can you link to the statement from them? > Replace setup.cfg Our `setup.cfg` only has configs for tools...
@anthonyharrison @terriko Any news on this issue? The current workflow creates SBOM every week but doesn't print the new one and doesn't update SBOM in the repo. I am not...
> Certainly something to consider going forward. @anthonyharrison, you can see [here](https://github.com/Molkree/cve-bin-tool/tree/sbom-ci/sbom) that SBOMs for different Python versions differ due to the fact that packages have different dependencies on different...
> such a big change is usually not expected when updating a minor version Because it's still v0.y.z it's in line with semver: > Major version zero (0.y.z) is for...
I can add that it's not limited to `except` clause, multiline `with` statement also results in incorrect syntax: ```py with open( "filepath", ) as f: pass ``` becomes ```py def...
#11582 might be very close to this and it even was investigated and worked on.
> I'm not sure if operators colors change as well They do change color, this is with GitHub Light theme:  ```py class Bar: def __add__(self, other: object) -> None:...
I wish GitHub had 😱 as a reaction to posts, that was literally me when reading this explanation.
@paulcretu, does archiving mean to [tag a branch and then delete it](https://stackoverflow.com/a/1309934/6026285)?