Re: cython issues on EL8

2019-09-26 Thread Lumir Balhar
Hello. On 9/27/19 5:37 AM, Orion Poplawski wrote: I could use some help with some cython issues building pandas for EL8. First attempt: https://koji.fedoraproject.org/koji/taskinfo?taskID=37887295 running build_ext pandas._libs.algos: -> [['pandas/_libs/algos.c']] Traceback (most recent call

cython issues on EL8

2019-09-26 Thread Orion Poplawski
I could use some help with some cython issues building pandas for EL8. First attempt: https://koji.fedoraproject.org/koji/taskinfo?taskID=37887295 running build_ext pandas._libs.algos: -> [['pandas/_libs/algos.c']] Traceback (most recent call last): File "setup.py", line 838, in

Re: Python 3.8 porting help

2019-09-26 Thread Petr Viktorin
On 2019-09-26 14:03, Richard Shaw wrote: On Thu, Sep 26, 2019 at 3:55 AM Petr Viktorin > wrote: Actually, this is in FreeCAD code: FreeCAD-0.18.3/src/Base/swigpyrun.inl: PyObject *modules = interp->modules; Change "interp->modules" to

Re: Python 3.8 porting help

2019-09-26 Thread Richard Shaw
On Thu, Sep 26, 2019 at 3:55 AM Petr Viktorin wrote: > Actually, this is in FreeCAD code: > > FreeCAD-0.18.3/src/Base/swigpyrun.inl: PyObject *modules = interp->modules; > > Change "interp->modules" to "PyImport_GetModuleDict()" there. > Not being a c/c++ programmer I wasn't sure if it was

Re: Python 3.8 porting help

2019-09-26 Thread Petr Viktorin
Actually, this is in FreeCAD code: FreeCAD-0.18.3/src/Base/swigpyrun.inl: PyObject *modules = interp->modules; Change "interp->modules" to "PyImport_GetModuleDict()" there. On 2019-09-24 16:33, Victor Stinner wrote: Hi, It sounds like an issue in SWIG which access directly the