RE: [PATCH] sql: Fix table lists

2019-09-08 Thread Ali Alnubani
Thanks Stephen. I see the following section in the docs https://patchwork.readthedocs.io/en/latest/deployment/installation/#mail-transfer-agent-mta: """ This assumes your Postfix process is running as the nobody user. If this is not correct (use of postfix user is also common), you should

Re: [PATCH] sql: Fix table lists

2019-09-08 Thread Stephen Finucane
On Sun, 2019-09-08 at 07:13 +, Ali Alnubani wrote: > Thanks Stephen. > > I see the following section in the docs > https://patchwork.readthedocs.io/en/latest/deployment/installation/#mail-transfer-agent-mta: > """ > This assumes your Postfix process is running as the nobody user. If > this

Re: [PATCH 2/3] docker: Simplify MySQL reset

2019-09-08 Thread Stephen Finucane
On Tue, 2019-09-03 at 18:03 +0100, Stephen Finucane wrote: > Just use the hardcoded configuration. > > Signed-off-by: Stephen Finucane Trivial fix. Applied. ___ Patchwork mailing list Patchwork@lists.ozlabs.org

Re: [PATCH 3/3] docker: Use pyenv for Python versions

2019-09-08 Thread Stephen Finucane
On Tue, 2019-09-03 at 18:03 +0100, Stephen Finucane wrote: > This is slightly slower to initially configure but requires less hacking > to get the same environment and should be a lot more maintainable (just > a simple modification to change the Python version). > > Signed-off-by: Stephen

Re: [PATCH 1/3] Drop support for Python 3.4, add Python 3.7

2019-09-08 Thread Stephen Finucane
On Tue, 2019-09-03 at 18:03 +0100, Stephen Finucane wrote: > It's no longer supported upstream and the *second* last Ubuntu LTS > release provides something newer. Time to move on. > > Signed-off-by: Stephen Finucane I've applied this albeit with a couple of other fixes I missed (.travis.yml and

[PATCH] requirements: Switch to compatible releases

2019-09-08 Thread Stephen Finucane
In commit ab0c443691, we switched from using commit ranges to fixed ranges. This was a good idea in so far as it ensures we're providing an application with dependencies that are guaranteed to work. However, Patchwork as a project isn't active enough to warrant the continued busy work effort

[PATCH 1/2] REST: Add 'has_version' helper

2019-09-08 Thread Stephen Finucane
We're going to use this functionality elsewhere shortly. Signed-off-by: Stephen Finucane --- patchwork/api/base.py | 12 +++- patchwork/api/utils.py | 14 ++ 2 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 patchwork/api/utils.py diff --git

[PATCH 0/2] Add writeable 'bundles' API

2019-09-08 Thread Stephen Finucane
Hopefully self-explanatory. This closes another gap with the web UI and REST API. Stephen Finucane (2): REST: Add 'has_version' helper REST: Allow creating, updating, deleting of bundles docs/api/schemas/latest/patchwork.yaml| 170 +++- docs/api/schemas/patchwork.j2