commonism
commonism
trixie lacks [software-properties-common ](https://packages.debian.org/sid/software-properties-common) therefore the package https://github.com/kubernetes-sigs/kubespray/blob/06d8d48488618d3160726efeb51a63bc67047ff4/roles/system_packages/vars/main.yml#L109-L110 requires a check for e.g. `ansible_distribution_major_version in ['11', '12']`
[A possible fix](https://github.com/pydantic/pydantic/pull/11032#issuecomment-2797667916) - make the annotation declaration optional: https://github.com/pydantic/pydantic/blob/2e7cddb6a7600311c4a29763efd55596a826edde/pydantic/main.py#L1742-L1746 ```python annotations[f_name] = f_def[0] fields[f_name] = f_def[1] else: annotations[f_name] = f_def if f_def[0]: annotations[f_name] = f_def[0] fields[f_name] = f_def[1] else:...
As it's too late for 2.12, any chance for 2.13?
I used this.
Towncrier ain't happy with my intersphinx link to python docs: ``` /home/runner/work/yarl/yarl/docs/[towncrier-fragments]:45: WARNING: py:meth reference target not found: python.urllib.parse.urljoin ```
As ``` :py:function:`urllib.parse.urljoin` ``` does not work either > /home/runner/work/yarl/yarl/docs/changes.rst:45: ERROR: Unknown interpreted text role "py:function". But according to ``` python3 -m sphinx.ext.intersphinx https://docs.python.org/3/objects.inv | grep -E "(^py:.*|urllib.parse.urljoin)" … py:function...
The python domain maps _function_ to _func_, therefore it is :py:func: https://github.com/sphinx-doc/sphinx/blob/685e3fdb49c42b464e09ec955e1033e2a8729fff/sphinx/domains/python.py#L845-L881 To many docs for intersphinx show :py:function: as example. That said, mastered this as well.
linter currently dies with: ``` Extension error (sphinxcontrib.towncrier.ext): Handler for event 'env-get-outdated' threw an exception (exception: find_fragments() takes 3 positional arguments but 4 were given) make[1]: *** [Makefile:228: spelling] Error...
As you can see from the linked comits, I'm having issues downloading the dsp8010 zip from the github ci using the standard github runners. It's slow and breaks, can you...
As `#-~` is a range ```python ''.join(chr(i) for i in range(ord("#"),ord("~")+1)) "#$%&'()*+,-./0123456789:;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" ``` which already includes [ and ^ - …, we'll see where this ends up. You can make...