bw-processing 0.8.3__tar.gz → 0.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.
- {bw-processing-0.8.3/bw_processing.egg-info → bw-processing-0.8.4}/PKG-INFO +1 -1
- bw-processing-0.8.4/bw_processing/VERSION +1 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/utils.py +1 -1
- {bw-processing-0.8.3 → bw-processing-0.8.4/bw_processing.egg-info}/PKG-INFO +1 -1
- {bw-processing-0.8.3 → bw-processing-0.8.4}/tests/test_utils.py +5 -0
- bw-processing-0.8.3/bw_processing/VERSION +0 -1
- {bw-processing-0.8.3 → bw-processing-0.8.4}/LICENSE +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/MANIFEST.in +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/README.md +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/__init__.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/array_creation.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/constants.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/datapackage.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/errors.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/examples/__init__.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/examples/interfaces.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/examples/simple.zip +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/filesystem.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/indexing.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/io_helpers.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/merging.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/proxies.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing/unique_fields.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing.egg-info/SOURCES.txt +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing.egg-info/dependency_links.txt +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing.egg-info/not-zip-safe +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing.egg-info/requires.txt +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/bw_processing.egg-info/top_level.txt +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/dev/calculation_package.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/dev/loading.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/dev/processed_package.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/dev/resources.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/dev/speed_tests.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/docs/conf.py +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/pyproject.toml +0 -0
- {bw-processing-0.8.3 → bw-processing-0.8.4}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.8.4
|
|
@@ -7,6 +7,7 @@ import pytest
|
|
|
7
7
|
|
|
8
8
|
from bw_processing.errors import InvalidName
|
|
9
9
|
from bw_processing.utils import (
|
|
10
|
+
get_version_tuple,
|
|
10
11
|
check_name,
|
|
11
12
|
check_suffix,
|
|
12
13
|
dictionary_formatter,
|
|
@@ -14,6 +15,10 @@ from bw_processing.utils import (
|
|
|
14
15
|
)
|
|
15
16
|
|
|
16
17
|
|
|
18
|
+
def test_get_version_tuple():
|
|
19
|
+
assert isinstance(get_version_tuple(), tuple)
|
|
20
|
+
|
|
21
|
+
|
|
17
22
|
def test_load_bytes():
|
|
18
23
|
obj = BytesIO()
|
|
19
24
|
np.save(obj, np.arange(10), allow_pickle=False)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.8.3
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|