Fedor Eremeev
Fedor Eremeev
Proposed solution: setup.py: ```python import setuptools +import codecs -with open("README.md", 'r') as f: + +with codecs.open("README.md", encoding="utf-8", mode="r") as f: long_description = f.read()```
Yeah, that's nice proposition and sorry for slow fix :)
Looks like it is also connected with this libs: ``` httplib2 0.20.1 requires pyparsing=2.4.2, but you'll have pyparsing 3.0.1 which is incompatible. ```
> Fixed by adding pyparsing==2.4.7 in my requirements.txt @RRaideRR @eremeevfd I can confirm also, but I tried to add `pyparsing < 3` and it worked also :) @hiranya911 I have...
@hiranya911 issue in httplib2 is closed now
nice work!
@hessjcg thanks for opening the issue! we faced the same thing recently, did you find any workaround for now?
okay sorry, I found an answer myself My context is this: I'm using kubernetes and use cloud-sql-proxy in CronJobs, recently I've migrated just hosting a proxy in a container to...