Re: Allow installation on buster of a package not supporting 3.7 (async/await syntax error when generating bytecode)

2018-11-19 Thread Thomas Goirand
On 11/8/18 9:15 AM, Adam Cécile wrote: > Hello list, > > > I have a package working perfectly fine on Pyrhon 3.6 but using > async/await methods so it cannot work on python 3.7 at the moment. > During package compilation, I popd 3.7 from supported version returned > by py3version and it allows me

Re: Allow installation on buster of a package not supporting 3.7 (async/await syntax error when generating bytecode)

2018-11-09 Thread Adam Cécile
Just tried but it's not working: I wrote: dir|3.7-|/usr/lib/python3/dist-packages/tensorflow/ But installing the package gives: Traceback (most recent call last):   File "/usr/bin/py3compile", line 290, in     main()   File "/usr/bin/py3compile", line 266, in main     e_patterns = get_exclude

Re: Allow installation on buster of a package not supporting 3.7 (async/await syntax error when generating bytecode)

2018-11-09 Thread Adam Cecile
Thanks a lot Nicolas ! It looks perfect, I made the modification but haven't been able to test it yet. Le 8 novembre 2018 14:26:07 GMT+01:00, Nicolas Dandrimont a écrit : >Hi! > >* Adam Cécile [2018-11-08 09:15:59 +0100]: > >> Hello list, >> >> >> I have a package working perfectly fine on P

Re: Allow installation on buster of a package not supporting 3.7 (async/await syntax error when generating bytecode)

2018-11-08 Thread Nicolas Dandrimont
Hi! * Adam Cécile [2018-11-08 09:15:59 +0100]: > Hello list, > > > I have a package working perfectly fine on Pyrhon 3.6 but using async/await > methods so it cannot work on python 3.7 at the moment. > During package compilation, I popd 3.7 from supported version returned by > py3version and i

Allow installation on buster of a package not supporting 3.7 (async/await syntax error when generating bytecode)

2018-11-08 Thread Adam Cécile
Hello list, I have a package working perfectly fine on Pyrhon 3.6 but using async/await methods so it cannot work on python 3.7 at the moment. During package compilation, I popd 3.7 from supported version returned by py3version and it allows me to build the package just fine: Problem: I cann