cdasws 1.8.3__tar.gz → 1.8.4__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.
- {cdasws-1.8.3 → cdasws-1.8.4}/PKG-INFO +1 -1
- {cdasws-1.8.3 → cdasws-1.8.4}/cdasws/__init__.py +9 -9
- {cdasws-1.8.3 → cdasws-1.8.4}/cdasws.egg-info/PKG-INFO +1 -1
- {cdasws-1.8.3 → cdasws-1.8.4}/setup.py +1 -1
- {cdasws-1.8.3 → cdasws-1.8.4}/README.md +0 -0
- {cdasws-1.8.3 → cdasws-1.8.4}/cdasws/__main__.py +0 -0
- {cdasws-1.8.3 → cdasws-1.8.4}/cdasws/datarepresentation.py +0 -0
- {cdasws-1.8.3 → cdasws-1.8.4}/cdasws/datarequest.py +0 -0
- {cdasws-1.8.3 → cdasws-1.8.4}/cdasws/timeinterval.py +0 -0
- {cdasws-1.8.3 → cdasws-1.8.4}/cdasws.egg-info/SOURCES.txt +0 -0
- {cdasws-1.8.3 → cdasws-1.8.4}/cdasws.egg-info/dependency_links.txt +0 -0
- {cdasws-1.8.3 → cdasws-1.8.4}/cdasws.egg-info/requires.txt +0 -0
- {cdasws-1.8.3 → cdasws-1.8.4}/cdasws.egg-info/top_level.txt +0 -0
- {cdasws-1.8.3 → cdasws-1.8.4}/setup.cfg +0 -0
|
@@ -83,17 +83,17 @@ from cdasws.timeinterval import TimeInterval
|
|
|
83
83
|
|
|
84
84
|
|
|
85
85
|
# requires python >= 3.4
|
|
86
|
-
if find_spec('spacepy.datamodel') is not None:
|
|
87
|
-
import spacepy.datamodel as spdm # type: ignore
|
|
88
|
-
SPDM_AVAILABLE = True
|
|
89
|
-
else:
|
|
90
|
-
SPDM_AVAILABLE = False
|
|
91
|
-
# python < 3.4
|
|
92
|
-
#try:
|
|
86
|
+
#if find_spec('spacepy.datamodel') is not None:
|
|
93
87
|
# import spacepy.datamodel as spdm # type: ignore
|
|
94
88
|
# SPDM_AVAILABLE = True
|
|
95
|
-
#
|
|
89
|
+
#else:
|
|
96
90
|
# SPDM_AVAILABLE = False
|
|
91
|
+
# python < 3.4
|
|
92
|
+
try:
|
|
93
|
+
import spacepy.datamodel as spdm # type: ignore
|
|
94
|
+
SPDM_AVAILABLE = True
|
|
95
|
+
except ImportError:
|
|
96
|
+
SPDM_AVAILABLE = False
|
|
97
97
|
|
|
98
98
|
try:
|
|
99
99
|
from cdflib.xarray import cdf_to_xarray
|
|
@@ -137,7 +137,7 @@ except ImportError:
|
|
|
137
137
|
CDF_XARRAY_AVAILABLE = False
|
|
138
138
|
|
|
139
139
|
|
|
140
|
-
__version__ = "1.8.
|
|
140
|
+
__version__ = "1.8.4"
|
|
141
141
|
|
|
142
142
|
|
|
143
143
|
#
|
|
@@ -10,7 +10,7 @@ README = (HERE / "README.md").read_text()
|
|
|
10
10
|
# This call to setup() does all the work
|
|
11
11
|
setup(
|
|
12
12
|
name="cdasws",
|
|
13
|
-
version="1.8.
|
|
13
|
+
version="1.8.4",
|
|
14
14
|
description="NASA's Coordinated Data Analysis System Web Service Client Library",
|
|
15
15
|
long_description=README,
|
|
16
16
|
long_description_content_type="text/markdown",
|
|
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
|