Lucas Connors

Results 15 issues of Lucas Connors

This may not be an issue with an easy fix, but I did notice that when I select a content type of a model that is _not_ registered in admin,...

The precompiled SQLite package 3.6.0 is incompatible with Django 2.2+. Django 2.2+ requires SQLite 3.8.3+. Details in the Django release notes: https://docs.djangoproject.com/en/2.2/releases/2.2/

I ran effectively the following code: ```python period = Period(Event.objects.all(), start, end) for occurrence in period.get_occurrences(): ... ``` and here is a result from `django-debug-toolbar`: It seems that one SQL...

**Is your feature request related to a problem? Please describe.** I am using `merge-bot` to merge Dependabot pull requests and often I want to mark several of them as ready...

This PR contains https://github.com/KristianOellegaard/django-saml-service-provider/pull/11. This PR also simplifies the setup and integration of `django-saml-service-provider` into a Django project by allowing settings in `settings.py` to be configured making the views in...

This PR contains https://github.com/KristianOellegaard/django-saml-service-provider/pull/10.

This PR contains https://github.com/KristianOellegaard/django-saml-service-provider/pull/9. This PR also drops explicit support for Django 1.4-1.7 and adds explicit support for Django 1.8 and Django 1.9.

using gitignore.io

In `views.py`, `reverse` is imported from `django.core.urlresolvers` which in Django 1.10 has been deprecated in favour of `django.urls`: https://github.com/KristianOellegaard/django-saml-service-provider/blob/5de8e24c5c411708782450200442b6ab7991f3a9/saml_service_provider/views.py#L3 This causes a warning in Django 1.10 and will cease to...