danigm
danigm
The urllib3.request.RequestMethods has been moved to urllib3._request_methods.RequestMethods. This patch changes the usage to continue working with the latest release, but now it's a "private" class in a "private" module, so...
https://github.com/mpdavis/python-jose/issues/346
Fix https://github.com/mpdavis/python-jose/issues/348
This patch replaces the call to rpmspec binary with the usage of the python library python-rpm-spec. The usage of this module adds it as a dependency. Fix https://github.com/rpm-software-management/spec-cleaner/issues/304
Fix https://github.com/liblouis/liblouis/issues/1551
Running this script on SUSE on s390x arch raises an exception: The script: ```python import louis with open("braille_result1.txt", 'w') as braille_result1: print(louis.translate(["unicode.dis","en-chardefs.cti"], "abcdefghijklmnopqrstuvwxyz")[0], file=braille_result1) with open("braille_result2.txt", 'w') as braille_result2: print(louis.translate(["unicode.dis","en-chardefs.cti"],...
The last version of urllib3, `1.26.13` parses differently the port `0` in urls and that breaks the tests: https://github.com/urllib3/urllib3/releases/tag/1.26.13 This is the test that's failing: ``` _________________________________________________________ test_url_to_node_config[https://[::1]:0/-https://[::1]:0-] __________________________________________________________ url...
Python 3.11 is available in Leap 15.5, so it's better to use it for updated tools, instead of python 3.6.
For packages that doesn't use `%python_subpackages` there's no way to run the tests using the macros, just for the primary python without modifying the `%pythons` in the spec. It could...
This patch adds a new optional argument to the read_array method to enable pickle. By default the pickle load is disabled. This is based on the actual code in numpy/lib/format.py:...