John Vandenberg

Results 2068 comments of John Vandenberg

Very likely to have been fixed, and can be closed. However `requirements.txt` lists `GitPython==0.3.2.RC1`, which is more than a little bit old. I'd submit a patch but there is no...

There is some progress at https://github.com/Pr0Ger/PyAPNs2/pull/149

haystack has done a release with the Django 4 compatibility. oscar's tests failure on Django 4.1.

To avoid conflicts, https://github.com/django-oscar/django-oscar/pull/3938 should be merged first.

ftr, Django 4.1 causes 95 failures, and from a quick scan they are mostly like these two. Probably one root cause of them all. ```py [ 327s] ________________ TestScales.test_returns_zero_for_empty_basket _________________...

Applying https://github.com/GreenLightGo/django-oscar/commit/34aa580c81b9faeff4d028a7e77a4ca2f799988a reduces the number of failures from 95 to 36, which are all still a mix of `ValueError: 'Product' instance needs to have a primary key value before this...

Also worth noting that pip VCS branch support `@` causes no result if there is no path ```py >>> e.find_urls(' git+https://git.foobar.com@branch ') [] >>> e.find_urls(' git+https://git.foobar.com/@foo ') ['git+https://git.foobar.com/@foo'] ```

Ok, I'll get a PR underway today.