ogc-na 0.3.49__py3-none-any.whl → 0.3.50__py3-none-any.whl

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 ogc-na might be problematic. Click here for more details.

ogc/na/_version.py CHANGED
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.3.49'
16
- __version_tuple__ = version_tuple = (0, 3, 49)
15
+ __version__ = version = '0.3.50'
16
+ __version_tuple__ = version_tuple = (0, 3, 50)
ogc/na/annotate_schema.py CHANGED
@@ -148,7 +148,12 @@ ANNOTATION_IGNORE_EXPAND = [ANNOTATION_CONTEXT, ANNOTATION_EXTRA_TERMS, ANNOTATI
148
148
 
149
149
  CURIE_TERMS = '@id', '@type', '@index'
150
150
 
151
- UNDEFINED = object()
151
+ class Undefined:
152
+
153
+ def __bool__(self):
154
+ return False
155
+
156
+ UNDEFINED = Undefined()
152
157
 
153
158
  context_term_cache = LRUCache(maxsize=20)
154
159
  requests_session = requests_cache.CachedSession('ogc.na.annotate_schema', backend='memory', expire_after=180)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ogc_na
3
- Version: 0.3.49
3
+ Version: 0.3.50
4
4
  Summary: OGC Naming Authority tools
5
5
  Author-email: Rob Atkinson <ratkinson@ogc.org>, Piotr Zaborowski <pzaborowski@ogc.org>, Alejandro Villar <avillar@ogc.org>
6
6
  Project-URL: Homepage, https://github.com/opengeospatial/ogc-na-tools/
@@ -1,6 +1,6 @@
1
1
  ogc/na/__init__.py,sha256=uzcNiJ3uKFNJ1HBfKxIwgAy2HMUFsLAe5RkrUg8ncac,464
2
- ogc/na/_version.py,sha256=TsNmNGuKIPd5pF6DeDUV5CEoCXDMqjLzL1EZreVDEAw,413
3
- ogc/na/annotate_schema.py,sha256=SdaZYNooPeaomLTzOvMIhHs8LLUfOj7hZnNEM_IknT8,41187
2
+ ogc/na/_version.py,sha256=Q_8itBEQeZ4Dn-RIGV0jcZENPIzgmwUxTcLo6vNpPcc,413
3
+ ogc/na/annotate_schema.py,sha256=PFBC1wzo-jiWllKhdSSfU6MS6LyaZmt0pxpAu87_FgQ,41254
4
4
  ogc/na/domain_config.py,sha256=ORzITa1rTrD1MQdpWYrIVW5SwSa9lJd3hnyHIxNgiIU,13947
5
5
  ogc/na/download.py,sha256=2afrLyl4WsAlxkCgXsl47fs9mNKfDmhVpeT2iwNSoq0,3354
6
6
  ogc/na/gsp.py,sha256=KGa2G9i8kPefYTHNPUDoXnNyF7Tiwt8K__Ew_Qa7eeg,6048
@@ -14,7 +14,7 @@ ogc/na/validation.py,sha256=5xjHH55NZKM8HtUk8XgVzm8W5ZlZY00u_qsWfXK_8dM,3732
14
14
  ogc/na/input_filters/__init__.py,sha256=AhE7n_yECwxFKwOM3Jc0ft96TtF5i_Z-fHrS4HYOjaE,1179
15
15
  ogc/na/input_filters/csv.py,sha256=nFfB1XQF_QApcGGzMqEvzD_b3pBtCtsfUECsZ9UGE6s,2616
16
16
  ogc/na/input_filters/xml.py,sha256=9qYjp_w5JLInFM48zB15IYH9eTafjp1Aqd_8kfuW3aA,2074
17
- ogc_na-0.3.49.dist-info/METADATA,sha256=utM52i7eBc66GDtIj58CbYtQiOyUUF_QECuBGcD5ZXo,3829
18
- ogc_na-0.3.49.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
19
- ogc_na-0.3.49.dist-info/top_level.txt,sha256=Kvy3KhzcIhNPT4_nZuJCmS946ptRr_MDyU4IIhZJhCY,4
20
- ogc_na-0.3.49.dist-info/RECORD,,
17
+ ogc_na-0.3.50.dist-info/METADATA,sha256=48l6MgeDMdvsVxOed4gBRnBLpknpt6FK4kzQWx-KMuo,3829
18
+ ogc_na-0.3.50.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
19
+ ogc_na-0.3.50.dist-info/top_level.txt,sha256=Kvy3KhzcIhNPT4_nZuJCmS946ptRr_MDyU4IIhZJhCY,4
20
+ ogc_na-0.3.50.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (71.1.0)
2
+ Generator: setuptools (72.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5