mirror of
https://github.com/modoboa/modoboa.git
synced 2026-04-25 17:06:01 +03:00
[PR #1122] [MERGED] make modoboa-admin deploy work with python 3.4 #2128
Labels
No labels
bug
bug
dependencies
design
documentation
duplicate
enhancement
enhancement
enhancement
feedback-needed
help-needed
help-needed
installer
invalid
looking-for-sponsors
modoboa-contacts
new-ui
new-ui
pr
pull-request
pyconfr
python
question
security
stale
webmail
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/modoboa-modoboa#2128
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/modoboa/modoboa/pull/1122
Author: @arthru
Created: 5/10/2017
Status: ✅ Merged
Merged: 5/12/2017
Merged by: @tonioo
Base:
refacto/python3← Head:refacto/python3📝 Commits (10+)
297a9aemake modoboa-admin deploy work with python 3.49a5c293remove useless builtins importsbcb3fe0use pyldap in place of python-ldap in order to have python3 compatibility19e0c7dadd python 3.4 in tox conf1ad280emake deploy command work in both python2 and python3799e06badd dirs created while testing to gitignoe615f73funicode_literals everywhere and modoboa-admin deploy fixes3114ae3Merge remote-tracking branch 'upstream/refacto/python3' into refacto/python3c97e5a7fix tests for modoboa.core in python2742d948fix tests for modoboa.admin in python2📊 Changes
190 files changed (+522 additions, -160 deletions)
View changed files
📝
.gitignore(+2 -0)📝
.travis.yml(+1 -1)📝
bin/modoboa-admin.py(+2 -0)📝
ldap-requirements.txt(+0 -1)📝
modoboa/__init__.py(+1 -0)📝
modoboa/admin/__init__.py(+2 -0)📝
modoboa/admin/api.py(+2 -0)📝
modoboa/admin/app_settings.py(+4 -0)📝
modoboa/admin/apps.py(+2 -0)📝
modoboa/admin/constants.py(+2 -0)📝
modoboa/admin/factories.py(+3 -0)📝
modoboa/admin/forms/__init__.py(+2 -0)📝
modoboa/admin/forms/account.py(+2 -0)📝
modoboa/admin/forms/alias.py(+2 -0)📝
modoboa/admin/forms/domain.py(+7 -3)📝
modoboa/admin/forms/export.py(+4 -2)📝
modoboa/admin/forms/forward.py(+2 -0)📝
modoboa/admin/forms/import_.py(+3 -1)📝
modoboa/admin/handlers.py(+2 -0)📝
modoboa/admin/lib.py(+2 -0)...and 80 more files
📄 Description
Description of the issue/feature this PR addresses:
The command
modoboa-admin.py deploy --collectstatic --dburl default:postgres://localhost/modoboa_test --domain localhost --admin-username admin modoboa_testfailed with a lot of errrors when launched with python 3.4. The PR aims to fix that.Current behavior before PR:
Errors when launching ; return code != 0
Desired behavior after PR is merged:
No errors ; return code == 0
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.