nxs-analysis-tools 0.1.7__tar.gz → 0.1.8__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 nxs-analysis-tools might be problematic. Click here for more details.
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/PKG-INFO +1 -1
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/pyproject.toml +2 -2
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/src/_meta/__init__.py +1 -1
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/src/nxs_analysis_tools/chess.py +1 -1
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/LICENSE +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/MANIFEST.in +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/README.md +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/setup.cfg +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/setup.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/src/nxs_analysis_tools/__init__.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/src/nxs_analysis_tools/datareduction.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/src/nxs_analysis_tools/fitting.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/src/nxs_analysis_tools/pairdistribution.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/src/nxs_analysis_tools.egg-info/SOURCES.txt +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_accurate_highlight.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_chess.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_chess_fitting.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_datareduction.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_ellipsoidal_window.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_fitting.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_lmfit.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_mask_plotting.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_pairdistribution.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_plot_slice_axes_types.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_plot_slice_with_ndarray.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_rotate_data.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_sum_axis.py +0 -0
- {nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_symmetrizer_rectangular_plane.py +0 -0
|
@@ -6,7 +6,7 @@ build-backend = 'setuptools.build_meta'
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = 'nxs-analysis-tools'
|
|
9
|
-
version = '0.1.
|
|
9
|
+
version = '0.1.8'
|
|
10
10
|
description = 'Reduce and transform nexus format (.nxs) scattering data.'
|
|
11
11
|
readme = 'README.md'
|
|
12
12
|
requires-python = '>=3.7'
|
|
@@ -71,7 +71,7 @@ dev = [
|
|
|
71
71
|
'DOI' = 'https://doi.org/10.5281/zenodo.15186359'
|
|
72
72
|
|
|
73
73
|
[tool.bumpver]
|
|
74
|
-
current_version = "0.1.
|
|
74
|
+
current_version = "0.1.8"
|
|
75
75
|
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
|
|
76
76
|
tag_pattern = "vMAJOR.MINOR.PATCH[-TAG]"
|
|
77
77
|
commit_message = "Bump version {old_version} -> {new_version}"
|
|
@@ -764,7 +764,7 @@ class TempDependence:
|
|
|
764
764
|
LinearModel(prefix='background')])
|
|
765
765
|
linecutmodel.make_params()
|
|
766
766
|
linecutmodel.guess()
|
|
767
|
-
linecutmodel.params.set(
|
|
767
|
+
linecutmodel.params['peakamplitude'].set(min=0)
|
|
768
768
|
linecutmodel.fit()
|
|
769
769
|
|
|
770
770
|
def plot_order_parameter(self, ax=None, **kwargs):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/src/nxs_analysis_tools/datareduction.py
RENAMED
|
File without changes
|
|
File without changes
|
{nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/src/nxs_analysis_tools/pairdistribution.py
RENAMED
|
File without changes
|
{nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/src/nxs_analysis_tools.egg-info/SOURCES.txt
RENAMED
|
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
|
{nxs_analysis_tools-0.1.7 → nxs_analysis_tools-0.1.8}/tests/test_symmetrizer_rectangular_plane.py
RENAMED
|
File without changes
|