Skip to content

Commit 7ead969

Browse files
committed
upgrade OWSLib to 0.11.2
1 parent bf77d09 commit 7ead969

File tree

138 files changed

+29660
-1258
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+29660
-1258
lines changed

python/ext-libs/OWSLib-0.8.8-py2.7.egg-info/PKG-INFO renamed to python/ext-libs/OWSLib-0.11.2-py2.7.egg-info/PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Metadata-Version: 1.1
22
Name: OWSLib
3-
Version: 0.8.8
3+
Version: 0.11.2
44
Summary: OGC Web Service utility library
5-
Home-page: https://geopython.github.io/OWSLib
5+
Home-page: http://geopython.github.io/OWSLib
66
Author: Tom Kralidis
77
Author-email: tomkralidis@gmail.com
88
License: BSD

python/ext-libs/OWSLib-0.8.8-py2.7.egg-info/SOURCES.txt renamed to python/ext-libs/OWSLib-0.11.2-py2.7.egg-info/SOURCES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ owslib/dif.py
2525
owslib/etree.py
2626
owslib/fes.py
2727
owslib/fgdc.py
28+
owslib/gm03.py
2829
owslib/interfaces.py
2930
owslib/iso.py
3031
owslib/namespaces.py
@@ -41,9 +42,11 @@ owslib/wps.py
4142
owslib/coverage/__init__.py
4243
owslib/coverage/wcs100.py
4344
owslib/coverage/wcs110.py
45+
owslib/coverage/wcs111.py
4446
owslib/coverage/wcsBase.py
4547
owslib/coverage/wcsdecoder.py
4648
owslib/feature/__init__.py
49+
owslib/feature/schema.py
4750
owslib/feature/wfs100.py
4851
owslib/feature/wfs110.py
4952
owslib/feature/wfs200.py

python/ext-libs/OWSLib-0.8.8-py2.7.egg-info/installed-files.txt renamed to python/ext-libs/OWSLib-0.11.2-py2.7.egg-info/installed-files.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
../owslib/fgdc.py
1414
../owslib/wcs.py
1515
../owslib/wmts.py
16+
../owslib/gm03.py
1617
../owslib/interfaces.py
1718
../owslib/__init__.py
1819
../owslib/dif.py
@@ -26,10 +27,12 @@
2627
../owslib/feature/wfs200.py
2728
../owslib/feature/wfs100.py
2829
../owslib/feature/__init__.py
30+
../owslib/feature/schema.py
2931
../owslib/swe/common.py
3032
../owslib/swe/__init__.py
3133
../owslib/coverage/wcsBase.py
3234
../owslib/coverage/wcs100.py
35+
../owslib/coverage/wcs111.py
3336
../owslib/coverage/wcs110.py
3437
../owslib/coverage/__init__.py
3538
../owslib/coverage/wcsdecoder.py
@@ -53,6 +56,7 @@
5356
../owslib/fgdc.pyc
5457
../owslib/wcs.pyc
5558
../owslib/wmts.pyc
59+
../owslib/gm03.pyc
5660
../owslib/interfaces.pyc
5761
../owslib/__init__.pyc
5862
../owslib/dif.pyc
@@ -66,10 +70,12 @@
6670
../owslib/feature/wfs200.pyc
6771
../owslib/feature/wfs100.pyc
6872
../owslib/feature/__init__.pyc
73+
../owslib/feature/schema.pyc
6974
../owslib/swe/common.pyc
7075
../owslib/swe/__init__.pyc
7176
../owslib/coverage/wcsBase.pyc
7277
../owslib/coverage/wcs100.pyc
78+
../owslib/coverage/wcs111.pyc
7379
../owslib/coverage/wcs110.pyc
7480
../owslib/coverage/__init__.pyc
7581
../owslib/coverage/wcsdecoder.pyc
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
python-dateutil>=1.5
2+
pytz
3+
requests>=1.0
4+
pyproj

python/ext-libs/OWSLib-0.8.8-py2.7.egg-info/requires.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

python/ext-libs/owslib/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
__version__ = '0.8.8'
1+
from __future__ import (absolute_import, division, print_function)
2+
3+
__version__ = '0.11.2'
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
from __future__ import (absolute_import, division, print_function)

python/ext-libs/owslib/coverage/wcs100.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@
99
# Contact email: d.lowe@rl.ac.uk
1010
# =============================================================================
1111

12+
from __future__ import (absolute_import, division, print_function)
13+
1214
from owslib.coverage.wcsBase import WCSBase, WCSCapabilitiesReader, ServiceException
13-
from urllib import urlencode
15+
try:
16+
from urllib import urlencode
17+
except ImportError:
18+
from urllib.parse import urlencode
1419
from owslib.util import openURL, testXMLValue
1520
from owslib.etree import etree
1621
from owslib.crs import Crs
@@ -32,7 +37,7 @@ def __getitem__(self,name):
3237
if name in self.__getattribute__('contents').keys():
3338
return self.__getattribute__('contents')[name]
3439
else:
35-
raise KeyError, "No content named %s" % name
40+
raise KeyError("No content named %s" % name)
3641

3742
def __init__(self,url,xml, cookies):
3843
self.version='1.0.0'
@@ -166,7 +171,7 @@ def getOperationByName(self, name):
166171
for item in self.operations:
167172
if item.name == name:
168173
return item
169-
raise KeyError, "No operation named %s" % name
174+
raise KeyError("No operation named %s" % name)
170175

171176

172177
class OperationMetadata(object):

0 commit comments

Comments
 (0)