Re: [dpdk-dev] [PATCH v2] doc: fix build with python 3.8

2019-12-12 Thread Thomas Monjalon
11/12/2019 12:15, Bruce Richardson: > On Wed, Dec 11, 2019 at 12:01:40PM +0100, Thomas Monjalon wrote: > > After upgrading to python-3.8.0, a syntax mismatch is revealed: > > > > doc/guides/conf.py:240: SyntaxWarning: "is not" with a literal. > > Did you mean "!="? > > if value is not '':

Re: [dpdk-dev] [PATCH v2] doc: fix build with python 3.8

2019-12-11 Thread Bruce Richardson
On Wed, Dec 11, 2019 at 12:01:40PM +0100, Thomas Monjalon wrote: > After upgrading to python-3.8.0, a syntax mismatch is revealed: > > doc/guides/conf.py:240: SyntaxWarning: "is not" with a literal. > Did you mean "!="? > if value is not '': > > Removing "is not ''" seems the right thing

[dpdk-dev] [PATCH v2] doc: fix build with python 3.8

2019-12-11 Thread Thomas Monjalon
After upgrading to python-3.8.0, a syntax mismatch is revealed: doc/guides/conf.py:240: SyntaxWarning: "is not" with a literal. Did you mean "!="? if value is not '': Removing "is not ''" seems the right thing to do. A patch may also be needed in the RTD theme package: https://github.com