 lib/matplotlib/__init__.py
  @@ -126,9 +126,9 @@ def compare_versions(a, b):
    else:
    return False
     
    -if not compare_versions(six.__version__, '1.5'):
    +if not compare_versions(six.__version__, '1.3'):
    raise ImportError(
    - 'six 1.5 or later is required; you have %s' % (
    + 'six 1.3 or later is required; you have %s' % (
    six.__version__))
     
    try:
   
 setupext.py
  @@ -1090,7 +1090,7 @@ def get_extension(self):
     
    class Six(SetupPackage):
    name = "six"
    - min_version = "1.5"
    + min_version = "1.3"
     
    def check(self):
    try:
   
 
 
Please sign in to comment.

相关文章:

  • 2022-12-23
  • 2022-03-02
  • 2021-06-08
  • 2022-12-23
  • 2022-02-15
  • 2022-01-23
  • 2021-12-05
  • 2021-10-21
猜你喜欢
  • 2021-05-19
  • 2021-08-25
  • 2022-03-05
  • 2022-12-23
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
相关资源
相似解决方案