cecil 0.0.25__tar.gz → 0.0.27__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cecil might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cecil
3
- Version: 0.0.25
3
+ Version: 0.0.27
4
4
  Summary: Python SDK for Cecil Earth
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE.txt
@@ -8,13 +8,13 @@ Classifier: Development Status :: 4 - Beta
8
8
  Classifier: License :: OSI Approved :: MIT License
9
9
  Classifier: Operating System :: OS Independent
10
10
  Classifier: Programming Language :: Python :: 3
11
- Requires-Python: >=3.11
11
+ Requires-Python: >=3.10
12
12
  Requires-Dist: dask==2025.9.1
13
13
  Requires-Dist: pydantic<3.0.0,>=2.11.9
14
14
  Requires-Dist: requests<3.0.0,>=2.32.5
15
15
  Requires-Dist: rioxarray==0.19.0
16
16
  Requires-Dist: snowflake-connector-python[pandas]<4.0.0,>=3.17.4
17
- Requires-Dist: xarray==2025.9.1
17
+ Requires-Dist: xarray==2025.6.1
18
18
  Description-Content-Type: text/markdown
19
19
 
20
20
  # Cecil SDK
@@ -7,7 +7,7 @@ name = "cecil"
7
7
  dynamic = ["version"]
8
8
  description = 'Python SDK for Cecil Earth'
9
9
  readme = "README.md"
10
- requires-python = ">=3.11"
10
+ requires-python = ">=3.10"
11
11
  license = "MIT"
12
12
  classifiers = [
13
13
  "Development Status :: 4 - Beta",
@@ -21,7 +21,7 @@ dependencies = [
21
21
  "requests>=2.32.5,<3.0.0",
22
22
  "rioxarray==0.19.0",
23
23
  "snowflake-connector-python[pandas]>=3.17.4,<4.0.0",
24
- "xarray==2025.9.1"
24
+ "xarray==2025.6.1"
25
25
  ]
26
26
 
27
27
  [tool.hatch.version]
@@ -14,6 +14,7 @@ from warnings import warn
14
14
  from .errors import (
15
15
  Error,
16
16
  _handle_bad_request,
17
+ _handle_method_not_allowed,
17
18
  _handle_not_found,
18
19
  _handle_too_many_requests,
19
20
  _handle_unprocessable_entity,
@@ -99,7 +100,10 @@ class Client:
99
100
  "c1ee0d62-95ef-49b1-adf1-6a5a933d726d": "data_request_db.ibat.wdpa",
100
101
  }[data_request.dataset_id]
101
102
  except KeyError:
102
- raise ValueError("load_dataframe() is not supported for raster datasets.")
103
+ raise Error(
104
+ "method not allowed",
105
+ {"message": "load_dataframe() is not supported for raster datasets."},
106
+ )
103
107
 
104
108
  return self._query(
105
109
  f"select * from {secure_view} where data_request_id = '{data_request_id}'"
@@ -253,6 +257,8 @@ class Client:
253
257
  raise Error("unauthorised")
254
258
  case 404:
255
259
  _handle_not_found(err.response)
260
+ case 405:
261
+ _handle_method_not_allowed(err.response)
256
262
  case 422:
257
263
  _handle_unprocessable_entity(err.response)
258
264
  case 429:
@@ -36,6 +36,17 @@ def _handle_bad_request(response):
36
36
  raise Error("bad request", details)
37
37
 
38
38
 
39
+ def _handle_method_not_allowed(response):
40
+ if not _is_json(response.text):
41
+ raise Error("method not allowed")
42
+
43
+ details = {}
44
+ for key, value in response.json().items():
45
+ details[_format_json_key(key)] = value
46
+
47
+ raise Error("method not allowed", details)
48
+
49
+
39
50
  def _handle_not_found(response):
40
51
  if not _is_json(response.text):
41
52
  raise Error("resource not found")
@@ -0,0 +1 @@
1
+ __version__ = "0.0.27"
@@ -1 +0,0 @@
1
- __version__ = "0.0.25"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes