-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make devserver run on Python 3 #75
base: master
Are you sure you want to change the base?
Conversation
+1 as I was also needing/wanting this today. |
Should probably just use |
What the status of this issue? Does django-devserver support Python 3 now? |
+1 for this one - I've been using coagulant's fork |
+1, this project seems very interesting and I'd love to use it, but unfortunately I am on Python 3 ! |
+1 |
Our organization is running on Python 3 exclusively now as well. Shall we start a branch and collaborate if there's enough interest? |
@FlipperPA I´m interested and could help out. |
Is there a fork anyone is using? |
I know someone that is using this branch for python 3. |
@egrubbs why is Python 3 support not wanted? |
@dcramer Are you there? |
@ebertti Unless you're his boss I don't think you should ask questions in that tone. If you want to help develop a project, perhaps test the outstanding pull request(s) and report your results. |
I'm guessing the maintainer probably doesn't have much time to give to this project, as he's the founder and CEO of Sentry, which has exploded over the past few years (congrats to you, @dcramer!). If you look at his commit history, it is pretty clear that's where his attention is, and should be. I wonder if he'd be amenable to someone taking this project over as maintainer, especially since Django 2.0 (coming in ~December) will only support Python 3 going forward. Also worth considering, most of the features of this package can be accomplished in Django or are covered nicely in Django Debug Toolbar, for example:
Has this project become redundant? If not, can any of the features be pushed upstream to Django's |
@FlipperPA The main reason I still use devserver is for speed & AJAX: I often want is the query count/time info for API requests. I've been wondering whether it might be better to basically do a modern Django fork which would add only that information and forgo everything else since it's also much easier: hook the database, cache, etc. calls on startup and then turn control over to the stock WSGI app. |
Hi, since Django can run on Python 3 now, I thought it would be nice if devserver could, too.
I didn't use six library for compatibility, because I think the modifications are easy enough to keep them as they are...