PyOPIA 2.5.4__tar.gz → 2.5.5__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.
- {pyopia-2.5.4 → pyopia-2.5.5}/PKG-INFO +1 -1
- pyopia-2.5.5/pyopia/__init__.py +1 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/io.py +2 -2
- pyopia-2.5.4/pyopia/__init__.py +0 -1
- {pyopia-2.5.4 → pyopia-2.5.5}/LICENSE +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/README.md +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/background.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/classify.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/cli.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/exampledata.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/instrument/__init__.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/instrument/common.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/instrument/holo.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/instrument/silcam.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/instrument/uvp.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/pipeline.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/plotting.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/process.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/simulator/__init__.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/simulator/silcam.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/statistics.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/tests/__init__.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/tests/test_classify.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/tests/test_notebooks.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyopia/tests/test_pipeline.py +0 -0
- {pyopia-2.5.4 → pyopia-2.5.5}/pyproject.toml +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '2.5.5'
|
|
@@ -390,7 +390,7 @@ def load_toml(toml_file):
|
|
|
390
390
|
return settings
|
|
391
391
|
|
|
392
392
|
|
|
393
|
-
def StatsH5():
|
|
393
|
+
def StatsH5(**kwargs):
|
|
394
394
|
'''.. deprecated:: 2.4.8
|
|
395
395
|
:class:`pyopia.io.StatsH5` will be removed in version 3.0.0, it is replaced by
|
|
396
396
|
:class:`pyopia.io.StatsToDisc`.
|
|
@@ -430,4 +430,4 @@ def StatsH5():
|
|
|
430
430
|
append = true
|
|
431
431
|
'''
|
|
432
432
|
logger.warning('StatsH5 will be removed in version 3.0.0, it is replaced by pyopia.io.StatsToDisc')
|
|
433
|
-
return StatsToDisc()
|
|
433
|
+
return StatsToDisc(**kwargs)
|
pyopia-2.5.4/pyopia/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '2.5.4'
|
|
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
|