Brendan Batliner
Brendan Batliner
I'm experiencing this as well. Wondering if anyone ever found a fix.
I think this is an Electron thing. It uses its own version of Chromium, which internally caches and stores cookies for the whole installation, which any Electron app will use....
@rittneje you may find my description of the problem (and some proposed solutions) in #1003 relevant. After reading, do you think that the two issues are duplicates?
@medley56 `setuptools` re-exports `build_ext`. This is what I use: ```python3 from setuptools.command.build_ext import build_ext ``` You can see in their source that this attempts to use the `Cython` `build_ext` that...