#17212: django.contrib.gis.geos.error.GEOSException: Could not parse version 
info
string "3.4.0dev-CAPI-1.8.0"
------------------------+------------------------------------
     Reporter:  strk@…  |                    Owner:  nobody
         Type:  Bug     |                   Status:  closed
    Component:  GIS     |                  Version:  1.3
     Severity:  Normal  |               Resolution:  fixed
     Keywords:          |             Triage Stage:  Accepted
    Has patch:  1       |      Needs documentation:  0
  Needs tests:  0       |  Patch needs improvement:  1
Easy pickings:  0       |                    UI/UX:  0
------------------------+------------------------------------

Comment (by claudep):

 Here's a patch you should be able to manually apply to 1.4:
 {{{
 diff --git a/django/contrib/gis/geos/libgeos.py
 b/django/contrib/gis/geos/libgeos.py
 index f011208..05e5d12 100644
 --- a/django/contrib/gis/geos/libgeos.py
 +++ b/django/contrib/gis/geos/libgeos.py
 @@ -108,8 +108,11 @@ def get_pointer_arr(n):
  geos_version.restype = c_char_p

  # Regular expression should be able to parse version strings such as
 -# '3.0.0rc4-CAPI-1.3.3', '3.0.0-CAPI-1.4.1' or '3.4.0dev-CAPI-1.8.0'
 -version_regex =
 
re.compile(r'^(?P<version>(?P<major>\d+)\.(?P<minor>\d+)\.(?P<subminor>\d+))((rc(?P<release_candidate>\d+))|dev)?-CAPI-(?P<capi_version>\d+\.\d+\.\d+)$')
 +# '3.0.0rc4-CAPI-1.3.3', '3.0.0-CAPI-1.4.1', '3.4.0dev-CAPI-1.8.0' or
 '3.4.0dev-CAPI-1.8.0 r0'
 +version_regex = re.compile(
 +    r'^(?P<version>(?P<major>\d+)\.(?P<minor>\d+)\.(?P<subminor>\d+))'
 +
 r'((rc(?P<release_candidate>\d+))|dev)?-CAPI-(?P<capi_version>\d+\.\d+\.\d+)(
 r\d+)?$'
 +)
  def geos_version_info():
      """
      Returns a dictionary containing the various version metadata parsed
 from
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/17212#comment:9>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/073.01672c02a72c6609d10f14fe06f3f598%40djangoproject.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to