cryptography AssertionError: sorry, but this version only supports 100 named groups

后端 未结 1 1258
礼貌的吻别
礼貌的吻别 2021-02-13 04:24

I\'m installing several python packages via pip install on travis,

language: python
python:
- \'2.7\'
install:
- pip install -r requirements/env.tx         


        
相关标签:
1条回答
  • 2021-02-13 04:32

    There is a bug with PyCParser - See https://github.com/pyca/cryptography/issues/3187

    The work around is to use another version or to not use the binary distribution.

    pip install git+https://github.com/eliben/pycparser@release_v2.14
    

    or

    pip install --no-binary pycparser
    
    0 讨论(0)
提交回复
热议问题