diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3032bdd3..16a17067 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,85 @@ Release Notes .. current developments +3.6.0 +===== + +**Added:** + +* unit tests for initializing DiffractionObject with empty array in xarray and yarray +* function to return the index of the closest value to the specified value in an array. +* functions to convert between d and q +* catch division by zero warning messages in tests +* functionality to raise useful warning and error messages during angular conversion between two theta and q +* Improved API documentation in `DiffractionObject` methods and properties using the NumPy docstring format and PEP 256 +* validate xtype belongs to XQUANTITIES during DiffractionObject init +* Group's Pytest practices for using @pytest.mark.parametrize in test_diffraction_objects.py +* unit tests for __add__ operation for DiffractionObject +* Better wording on the capture user info functionality +* Spelling check via Codespell in pre-commit +* prettier pre-commit hook for automatic linting of .yml, .json, and .md files +* Function that can be used to compute muD (absorption coefficient) from a file containing an absorption profile +from a line-scan through the sample +* sbillinge username as the authorized admin for GitHub release workflow in `build-wheel-release-upload.yml` +* function to compute x-ray attenuation coefficient (mu) using XrayDB +* class docstring for `DiffractionObject` +* docforamtter in pre-commit for automatic formatting of docstrings to PEP 257 +* Function nsinterp for automatic interpolation onto the Nyquist-Shannon grid. +* functionality to return the 2D array based on the specified xtype +* functionality in dump to allow writing data on dspace +* addition, multiplication, subtraction, and division operators between two DiffractionObject instances or a scalar value with another DiffractionObject for modifying yarray (intensity) values. +* functionality to rescale diffraction objects, placing one on top of another at a specified point +* new feature in `scale_to()`: default scaling is based on the max q-value in each diffraction object. +* functions to convert between d and tth +* unit test for expected warning when no wavelength is provided for DiffractionObject init +* copy() method for DiffractionObject instance +* docstrings for `on_q`, `on_tth`, `on_d`, and `dump` in `diffraction_objects.py`. +* prevent direct modification of `all_arrays` using `@property` +* Information on how to update the default user information +* Example docs for basic DiffractionObject usage +* deploy github pages documentation on pre-release +* Gettable `id` property to `DiffractionObject` + +**Changed:** + +* Refactor get_user_info to separate the tasks of getting the info from config files +and creating config files when they are missing. +* test comment format with compact style without extra line for each comment +* Rename `input_scattering_quantity` to `input_data` in `DiffractionObject` init +* refactor `q_to_tth()` and `tth_to_q()` into `diffpy.utils.transforms` to make them available outside +DiffractionObject +* Moved resampler out of parsers, new path is diffpy.utils.resampler +* Rename the `isfloat` function to `is_number`, and move it to the `diffpy/utils/utilsvalidators.py` directory +* arrays and attributes now can be inserted when a DiffractionObject is instantiated +* data are now stored as a (len(x),4) numpy array with intensity in column 0, the q, then tth, then d +* `DiffractionObject.on_q`, `...on_tth` and `...on_d` are now methods and called as `DiffractionObject.on_q()` etc.` +* \tests directory tree to match \src +* DiffractionObject's "id" property renamed to "uuid" +* `DiffractionObject` requires 3 input parameters of `xarray`, `yarray`, `xtype`, to be instantiated. It can be instantiated with empty arrays. +* Paths in our documentation reflect changes made in code. +* Enumerated list for the different ways to set user information + +**Deprecated:** + +* `resample` function in resampler. Replaced with `wsinterp` with better functionality. +* Diffraction_object class, renamed to DiffractionObject + +**Fixed:** + +* additional information to users to relieve frustration in finding how to update global config +* Unittest to Pytest migration for test_loaddata.py +* file paths of the test files according to new \tests directory tree +* Typo for get_package_info example +* return type of `get_array_index` method in `DiffractionObject` to return integer instead of list + +**Removed:** + +* scattering_objects layer in importing diffraction_objects +* `user_config.py`. Replaced by `_load_config` and `check_and_build_global_config` in `tools.py`. +* Relative imports in parser's __init__.py +* `set_angles_from_list`, `set_angles_from`, `set_qs_from_range` methods in `DiffractionObject` + + 3.5.0 ===== diff --git a/news/DO-docstring.rst b/news/DO-docstring.rst deleted file mode 100644 index e3107199..00000000 --- a/news/DO-docstring.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* docstrings for `on_q`, `on_tth`, `on_d`, and `dump` in `diffraction_objects.py`. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/add-operations-tests.rst b/news/add-operations-tests.rst deleted file mode 100644 index e59edbd5..00000000 --- a/news/add-operations-tests.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* unit tests for __add__ operation for DiffractionObject - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/array_index.rst b/news/array_index.rst deleted file mode 100644 index 6f687373..00000000 --- a/news/array_index.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* function to return the index of the closest value to the specified value in an array. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/build-doc-automatic.rst b/news/build-doc-automatic.rst deleted file mode 100644 index 309fc888..00000000 --- a/news/build-doc-automatic.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* deploy github pages documentation on pre-release - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/capture-user.rst b/news/capture-user.rst deleted file mode 100644 index b789d46e..00000000 --- a/news/capture-user.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Better wording on the capture user info functionality - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/class-docstring.rst b/news/class-docstring.rst deleted file mode 100644 index a31cc6d6..00000000 --- a/news/class-docstring.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* class docstring for `DiffractionObject` - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/codespell.rst b/news/codespell.rst deleted file mode 100644 index 8c5ba6d2..00000000 --- a/news/codespell.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Spelling check via Codespell in pre-commit - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/config-UX.rst b/news/config-UX.rst deleted file mode 100644 index af826723..00000000 --- a/news/config-UX.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* additional information to users to relieve frustration in finding how to update global config - -**Security:** - -* diff --git a/news/configupdate.rst b/news/configupdate.rst deleted file mode 100644 index 0bc3ffa9..00000000 --- a/news/configupdate.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* no news added: covered in the news from the get_user_info work - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/constructor.rst b/news/constructor.rst deleted file mode 100644 index 39ffa77f..00000000 --- a/news/constructor.rst +++ /dev/null @@ -1,25 +0,0 @@ -**Added:** - -* - -**Changed:** - -* arrays and attributes now can be inserted when a DiffractionObject is instantiated -* data are now stored as a (len(x),4) numpy array with intensity in column 0, the q, then tth, then d -* `DiffractionObject.on_q`, `...on_tth` and `...on_d` are now methods and called as `DiffractionObject.on_q()` etc.` - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/d-q.rst b/news/d-q.rst deleted file mode 100644 index 92105f07..00000000 --- a/news/d-q.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* functions to convert between d and q - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/d-tth.rst b/news/d-tth.rst deleted file mode 100644 index 2bfc091f..00000000 --- a/news/d-tth.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* functions to convert between d and tth - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/deepcopy.rst b/news/deepcopy.rst deleted file mode 100644 index 578d360c..00000000 --- a/news/deepcopy.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* copy() method for DiffractionObject instance - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/deprecate.rst b/news/deprecate.rst deleted file mode 100644 index 31dd10e5..00000000 --- a/news/deprecate.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* Diffraction_object class, renamed to DiffractionObject - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/doc-update.rst b/news/doc-update.rst deleted file mode 100644 index 1993a616..00000000 --- a/news/doc-update.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* Paths in our documentation reflect changes made in code. - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/doccln.rst b/news/doccln.rst deleted file mode 100644 index 24127849..00000000 --- a/news/doccln.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Example docs for basic DiffractionObject usage - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/docformatter.rst b/news/docformatter.rst deleted file mode 100644 index 56368125..00000000 --- a/news/docformatter.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* docforamtter in pre-commit for automatic formatting of docstrings to PEP 257 - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/docs-do.rst b/news/docs-do.rst deleted file mode 100644 index 21faf520..00000000 --- a/news/docs-do.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* no news added: adding documentation for diffraction object operation examples - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/docstrings-refactor.rst b/news/docstrings-refactor.rst deleted file mode 100644 index 203b036e..00000000 --- a/news/docstrings-refactor.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Improved API documentation in `DiffractionObject` methods and properties using the NumPy docstring format and PEP 256 - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/dump.rst b/news/dump.rst deleted file mode 100644 index 7f99d586..00000000 --- a/news/dump.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* functionality in dump to allow writing data on dspace - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/get-index.rst b/news/get-index.rst deleted file mode 100644 index eef8c787..00000000 --- a/news/get-index.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* return type of `get_array_index` method in `DiffractionObject` to return integer instead of list - -**Security:** - -* diff --git a/news/is-float.rst b/news/is-float.rst deleted file mode 100644 index 918600e5..00000000 --- a/news/is-float.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* Rename the `isfloat` function to `is_number`, and move it to the `diffpy/utils/utilsvalidators.py` directory - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/mu.rst b/news/mu.rst deleted file mode 100644 index bbf9cb1a..00000000 --- a/news/mu.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* function to compute x-ray attenuation coefficient (mu) using XrayDB - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/muD_calculator.rst b/news/muD_calculator.rst deleted file mode 100644 index a6731760..00000000 --- a/news/muD_calculator.rst +++ /dev/null @@ -1,24 +0,0 @@ -**Added:** - -* Function that can be used to compute muD (absorption coefficient) from a file containing an absorption profile - from a line-scan through the sample - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/mv-input-scattering-quan.rst b/news/mv-input-scattering-quan.rst deleted file mode 100644 index 25e8aac9..00000000 --- a/news/mv-input-scattering-quan.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* Rename `input_scattering_quantity` to `input_data` in `DiffractionObject` init - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/no-empty-object.rst b/news/no-empty-object.rst deleted file mode 100644 index 7e4ec7a4..00000000 --- a/news/no-empty-object.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* `DiffractionObject` requires 3 input parameters of `xarray`, `yarray`, `xtype`, to be instantiated. It can be instantiated with empty arrays. - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/no-news.rst b/news/no-news.rst deleted file mode 100644 index 31779a23..00000000 --- a/news/no-news.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* No news added: just making sure the previous add, mul, div, and sub tests are working as expected. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/nsinterp.rst b/news/nsinterp.rst deleted file mode 100644 index 9b716b87..00000000 --- a/news/nsinterp.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Function nsinterp for automatic interpolation onto the Nyquist-Shannon grid. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/op-mul-sub-div.rst b/news/op-mul-sub-div.rst deleted file mode 100644 index 9fe75ccc..00000000 --- a/news/op-mul-sub-div.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* addition, multiplication, subtraction, and division operators between two DiffractionObject instances or a scalar value with another DiffractionObject for modifying yarray (intensity) values. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/prettier-pre-commit.rst b/news/prettier-pre-commit.rst deleted file mode 100644 index d61d93ed..00000000 --- a/news/prettier-pre-commit.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* prettier pre-commit hook for automatic linting of .yml, .json, and .md files - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/private_f.rst b/news/private_f.rst deleted file mode 100644 index b67df7b7..00000000 --- a/news/private_f.rst +++ /dev/null @@ -1,24 +0,0 @@ -**Added:** - -* - -**Changed:** - -* refactor `q_to_tth()` and `tth_to_q()` into `diffpy.utils.transforms` to make them available outside - DiffractionObject - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/pytest-comment.rst b/news/pytest-comment.rst deleted file mode 100644 index 9d0f81bb..00000000 --- a/news/pytest-comment.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Group's Pytest practices for using @pytest.mark.parametrize in test_diffraction_objects.py - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/pytest-handle-warning.rst b/news/pytest-handle-warning.rst deleted file mode 100644 index 81bf78bf..00000000 --- a/news/pytest-handle-warning.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* catch division by zero warning messages in tests - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/pytest-reformat-transform.rst b/news/pytest-reformat-transform.rst deleted file mode 100644 index 2bd19e87..00000000 --- a/news/pytest-reformat-transform.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* No news added: previous PR already contains has an news item for refactoring test_transform.py - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/pytest-test-refactor.rst b/news/pytest-test-refactor.rst deleted file mode 100644 index 08d3819b..00000000 --- a/news/pytest-test-refactor.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* No news added: refactoring tests that have been mentioned in previous news - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/pytest-warning-divide-zero.rst b/news/pytest-warning-divide-zero.rst deleted file mode 100644 index 4b84dba2..00000000 --- a/news/pytest-warning-divide-zero.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* No news added: previous news created for catching divide by zero warnings in pytest - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/pytest-warning.rst b/news/pytest-warning.rst deleted file mode 100644 index 8900165f..00000000 --- a/news/pytest-warning.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* No news added - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/pytest-warnings-others.rst b/news/pytest-warnings-others.rst deleted file mode 100644 index 8900165f..00000000 --- a/news/pytest-warnings-others.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* No news added - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/pytest-wavelength-warnings.rst b/news/pytest-wavelength-warnings.rst deleted file mode 100644 index 3446720a..00000000 --- a/news/pytest-wavelength-warnings.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* unit test for expected warning when no wavelength is provided for DiffractionObject init - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/remove-userconfig.rst b/news/remove-userconfig.rst deleted file mode 100644 index 967d9559..00000000 --- a/news/remove-userconfig.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* `user_config.py`. Replaced by `_load_config` and `check_and_build_global_config` in `tools.py`. - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/resample-dep.rst b/news/resample-dep.rst deleted file mode 100644 index 91bb3e3e..00000000 --- a/news/resample-dep.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* `resample` function in resampler. Replaced with `wsinterp` with better functionality. - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/resampler-relocation.rst b/news/resampler-relocation.rst deleted file mode 100644 index 220fc2f5..00000000 --- a/news/resampler-relocation.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* Moved resampler out of parsers, new path is diffpy.utils.resampler - -**Deprecated:** - -* - -**Removed:** - -* Relative imports in parser's __init__.py - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/rm-range-methods.rst b/news/rm-range-methods.rst deleted file mode 100644 index 8150da16..00000000 --- a/news/rm-range-methods.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* `set_angles_from_list`, `set_angles_from`, `set_qs_from_range` methods in `DiffractionObject` - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/scaleto-comments.rst b/news/scaleto-comments.rst deleted file mode 100644 index 73d0f042..00000000 --- a/news/scaleto-comments.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* no news added - make test comments for `test_scale_to` more readable - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/scaleto-max.rst b/news/scaleto-max.rst deleted file mode 100644 index d70e9d7f..00000000 --- a/news/scaleto-max.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* new feature in `scale_to()`: default scaling is based on the max q-value in each diffraction object. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/scaleto.rst b/news/scaleto.rst deleted file mode 100644 index 6f6b0635..00000000 --- a/news/scaleto.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* functionality to rescale diffraction objects, placing one on top of another at a specified point - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/scattering-obj-valid.rst b/news/scattering-obj-valid.rst deleted file mode 100644 index adf4dfa9..00000000 --- a/news/scattering-obj-valid.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* validate xtype belongs to XQUANTITIES during DiffractionObject init - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/scattering_obt.rst b/news/scattering_obt.rst deleted file mode 100644 index 0090b88e..00000000 --- a/news/scattering_obt.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* scattering_objects layer in importing diffraction_objects - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/set-github-admin.rst b/news/set-github-admin.rst deleted file mode 100644 index 3f04cf1a..00000000 --- a/news/set-github-admin.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* sbillinge username as the authorized admin for GitHub release workflow in `build-wheel-release-upload.yml` - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/setter-property.rst b/news/setter-property.rst deleted file mode 100644 index 8b2ddc97..00000000 --- a/news/setter-property.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* prevent direct modification of `all_arrays` using `@property` - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/test-func-format-compact.rst b/news/test-func-format-compact.rst deleted file mode 100644 index ecb92ac0..00000000 --- a/news/test-func-format-compact.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* test comment format with compact style without extra line for each comment - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/test-refactor.rst b/news/test-refactor.rst deleted file mode 100644 index 095df231..00000000 --- a/news/test-refactor.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Unittest to Pytest migration for test_loaddata.py - -**Security:** - -* diff --git a/news/tests-restruct.rst b/news/tests-restruct.rst deleted file mode 100644 index 4b28c56f..00000000 --- a/news/tests-restruct.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* \tests directory tree to match \src - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* file paths of the test files according to new \tests directory tree - -**Security:** - -* diff --git a/news/tools-doc-update.rst b/news/tools-doc-update.rst deleted file mode 100644 index e04b7b17..00000000 --- a/news/tools-doc-update.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Information on how to update the default user information - -**Changed:** - -* Enumerated list for the different ways to set user information - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Typo for get_package_info example - -**Security:** - -* diff --git a/news/tth-q.rst b/news/tth-q.rst deleted file mode 100644 index c512bf9b..00000000 --- a/news/tth-q.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* functionality to raise useful warning and error messages during angular conversion between two theta and q - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/user_info_doc.rst b/news/user_info_doc.rst deleted file mode 100644 index 43bee6bd..00000000 --- a/news/user_info_doc.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* no news added: simply adding documentation for config update workflow - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/userinfo.rst b/news/userinfo.rst deleted file mode 100644 index 124b49f8..00000000 --- a/news/userinfo.rst +++ /dev/null @@ -1,24 +0,0 @@ -**Added:** - -* - -**Changed:** - -* Refactor get_user_info to separate the tasks of getting the info from config files - and creating config files when they are missing. - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/uuid-rename.rst b/news/uuid-rename.rst deleted file mode 100644 index ecd7f22d..00000000 --- a/news/uuid-rename.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* DiffractionObject's "id" property renamed to "uuid" - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/uuid.rst b/news/uuid.rst deleted file mode 100644 index 474793f4..00000000 --- a/news/uuid.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Gettable `id` property to `DiffractionObject` - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/valid-empty-do.rst b/news/valid-empty-do.rst deleted file mode 100644 index dfd98716..00000000 --- a/news/valid-empty-do.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* unit tests for initializing DiffractionObject with empty array in xarray and yarray - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/xtype.rst b/news/xtype.rst deleted file mode 100644 index 24a78758..00000000 --- a/news/xtype.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* functionality to return the 2D array based on the specified xtype - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -*