Re: [PATCH] postgres: Fix version to 9.6

2017-12-03 Thread Stephen Finucane
On Fri, 2017-11-24 at 10:54 +1100, Daniel Axtens wrote: > Always version your dependencies, people. > > Postgres 10 has been released, the data format is not backwards > compatible with Postgres 9.6. I don't think too many people have > moved to 10 yet, so test with 9.6 for now. > >

Re: [PATCH v2 0/9] Add support for Django 1.11

2017-12-03 Thread Stephen Finucane
On Mon, 2017-12-04 at 09:29 +1100, Daniel Axtens wrote: > Stephen Finucane writes: > > > On Thu, 2017-11-16 at 21:02 +1100, Daniel Axtens wrote: [snip] > > > I haven't specifically examined the patches to the level I'm > > > comfortable with giving them Reviews, but I am

Re: [PATCH v2 0/9] Add support for Django 1.11

2017-12-03 Thread Stephen Finucane
On Thu, 2017-11-16 at 21:02 +1100, Daniel Axtens wrote: > Hi Stephen, > > > This is a sizable, albeit mostly trivial series focused on (a) > > adding support > > for Django 1.11 to Patchwork. Previously this also contained a > > series of > > patches aimed at resolving all 'DeprecationWarning's

Re: [PATCH v2 0/9] Add support for Django 1.11

2017-12-03 Thread Daniel Axtens
Stephen Finucane writes: > On Thu, 2017-11-16 at 21:02 +1100, Daniel Axtens wrote: >> Hi Stephen, >> >> > This is a sizable, albeit mostly trivial series focused on (a) >> > adding support >> > for Django 1.11 to Patchwork. Previously this also contained a >> > series of >> >

Re: [PATCH 3/3] Add support for Python 3.6

2017-12-03 Thread Daniel Axtens
Stephen Finucane writes: > On Mon, 2017-12-04 at 09:32 +1100, Daniel Axtens wrote: >> Stephen Finucane writes: >> >> > This is simply a case of adding the required tox environment and >> > updating the docs. We don't support Python 3.3 so the docs are >> >

Patchwork v2.0.1 Available

2017-12-03 Thread Stephen Finucane
We're pleased to announce the release of Patchwork v2.0.1. This release is part of the "Dazzle" release series: https://github.com/getpatchwork/patchwork/releases/tag/v2.0.1 This release is a PATCH release that focuses on bugfixes. For more details, please see below. Happy patchworking!

[PATCH v2 2/3] Remove support for Django 1.6, 1.7

2017-12-03 Thread Stephen Finucane
These versions are massively outdated and the only reason for keeping them was to allow installation on RHEL 7 using the version provided via EPEL. No one's actually using this so just kill it. This also allows us to remove support for django-filter 0.11, which was only retained for use with

[PATCH v2 3/3] Add support for Python 3.6

2017-12-03 Thread Stephen Finucane
This is simply a case of adding the required tox environment and updating the docs. We don't support Python 3.3 so the docs are updated accordingly. Signed-off-by: Stephen Finucane --- README.rst | 2 +-

[PATCH v2 0/3] Remove support for Django 1.6, 1.7

2017-12-03 Thread Stephen Finucane
These versions are ancient. It's time to do away with them. More comments inline. Stephen Finucane (3): doc: Remove references to 'UPGRADING' and 'CHANGELOG' Remove support for Django 1.6, 1.7 Add support for Python 3.6 README.rst | 6 +-

Re: [PATCH 3/3] Add support for Python 3.6

2017-12-03 Thread Stephen Finucane
On Mon, 2017-12-04 at 09:32 +1100, Daniel Axtens wrote: > Stephen Finucane writes: > > > This is simply a case of adding the required tox environment and > > updating the docs. We don't support Python 3.3 so the docs are > > updated > > accordingly. > > > > Signed-off-by:

[PATCH 0/3] Remove support for Django 1.6, 1.7

2017-12-03 Thread Stephen Finucane
These versions are ancient. It's time to do away with them. More comments inline. Stephen Finucane (3): doc: Remove references to 'UPGRADING' and 'CHANGELOG' Remove support for Django 1.6, 1.7 Add support for Python 3.6 README.rst | 4 +-

[PATCH 1/3] doc: Remove references to 'UPGRADING' and 'CHANGELOG'

2017-12-03 Thread Stephen Finucane
These documents have been replaced by release notes. Remove references to them. Signed-off-by: Stephen Finucane --- docs/deployment/upgrading.rst | 10 +- docs/releases/index.rst | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git

Re: [PATCH 3/3] Add support for Python 3.6

2017-12-03 Thread Daniel Axtens
Stephen Finucane writes: > This is simply a case of adding the required tox environment and > updating the docs. We don't support Python 3.3 so the docs are updated > accordingly. > > Signed-off-by: Stephen Finucane > --- > README.rst