Re: [Mesa-dev] [PATCH mesa 2/3] egl: fix python lib deprecation warning

2018-11-07 Thread Eric Engestrom
On Wednesday, 2018-11-07 09:51:12 -0700, Kyle Brenneman wrote: > On 11/07/2018 06:20 AM, Eric Engestrom wrote: > >DeprecationWarning: the imp module is deprecated in favour of importlib > > > > importlib is available since python 2.7 and 3.1, and we already require > > 2.7 and 3.4 so we can si

Re: [Mesa-dev] [PATCH mesa 2/3] egl: fix python lib deprecation warning

2018-11-07 Thread Kyle Brenneman
On 11/07/2018 06:20 AM, Eric Engestrom wrote: DeprecationWarning: the imp module is deprecated in favour of importlib importlib is available since python 2.7 and 3.1, and we already require 2.7 and 3.4 so we can simply use the new lib. Signed-off-by: Eric Engestrom --- src/egl/generate/ge

[Mesa-dev] [PATCH mesa 2/3] egl: fix python lib deprecation warning

2018-11-07 Thread Eric Engestrom
DeprecationWarning: the imp module is deprecated in favour of importlib importlib is available since python 2.7 and 3.1, and we already require 2.7 and 3.4 so we can simply use the new lib. Signed-off-by: Eric Engestrom --- src/egl/generate/gen_egl_dispatch.py | 4 ++-- 1 file changed, 2 inse