-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ✨ Update reports module (#1136)
* fix: 🚸 change 'max_nfev' from 1000 to None This change goes back to `None` to allow `lmfit` to allows again to evualte the required number of fits based on the proposed model. * feat: ✨ Add `warnings` for informing about fitting exceptions * feat: ✨ Add fit insights to fit report * ci: 💚 Update release file path in labeler.yml * ci: 💚 Remove unused codeowners in labeler.yml * Revert "ci: 💚 Remove unused codeowners in labeler.yml" This reverts commit 5845c02. * ci: ⬇️ Update labeler version back to `v4` * Revert "ci: ⬇️ Update labeler version back to `v4`" This reverts commit e4767aa. * feat: ✨ Switch to default value for max iterations * ci: ♻️ Update labeler.yml to v5 standard * from tools import transform_numpy_dictionary * fix: 🐛 condition for setting computional message * ci: 💚 Update labeler.yml with changed file patterns * test: ✅ Add `np.int64` for converting to int
- Loading branch information
Showing
9 changed files
with
271 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,82 @@ | ||
root: | ||
- changed-files: | ||
- any-glob-to-any-file: '*' | ||
codeowners: | ||
- .github/CODEOWNERS | ||
- changed-files: | ||
- any-glob-to-any-file: .github/CODEOWNERS | ||
codespaces: | ||
- .devcontainer/** | ||
- changed-files: | ||
- any-glob-to-any-file: .devcontainer/** | ||
dependencies: | ||
- poetry.lock | ||
- github/dependabot.yml | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- poetry.lock | ||
- github/dependabot.yml | ||
documentation: | ||
- docs/** | ||
- Examples/** | ||
- mkdocs.yml | ||
- README.md | ||
- INSTALLATION.md | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- docs/** | ||
- Examples/** | ||
- mkdocs.yml | ||
- README.md | ||
- INSTALLATION.md | ||
forms: | ||
- .github/ISSUE_TEMPLATE/** | ||
- .github/pull_request_template.md | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .github/ISSUE_TEMPLATE/** | ||
- .github/pull_request_template.md | ||
github-actions: | ||
- .github/workflows/** | ||
- changed-files: | ||
- any-glob-to-any-file: .github/workflows/** | ||
pre-commit: | ||
- .pre-commit-config.yaml | ||
- .pre-commit-hooks.yaml | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .pre-commit-config.yaml | ||
- .pre-commit-hooks.yaml | ||
python: | ||
- "spectrafit/**/*.py" | ||
- changed-files: | ||
- any-glob-to-any-file: "spectrafit/**/*.py" | ||
testing: | ||
- "spectrafit/**/test_*.py" | ||
- changed-files: | ||
- any-glob-to-any-file: "spectrafit/**/test_*.py" | ||
docker: | ||
- Dockerfile | ||
- .dockerignore | ||
- .devcontainer/Dockerfile | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- Dockerfile | ||
- .dockerignore | ||
- .devcontainer/Dockerfile | ||
release: | ||
- "spectrafit/__init__.py" | ||
- changed-files: | ||
- any-glob-to-any-file: spectrafit/__init__.py | ||
vendor: | ||
- vendor/** | ||
- changed-files: | ||
- any-glob-to-any-file: vendor/** | ||
maintenance: | ||
- .gitignore | ||
- .github/dependabot.yml | ||
- .github/release-drafter.yml | ||
- .github/labeler.yml | ||
- .github/workflows/label.yml | ||
- .sonarcloud.properties | ||
- .pre-commit-config.yaml | ||
- .prettierignore | ||
- .pylintrc | ||
- .sonarcloud.properties | ||
- .sourcery.yaml | ||
- "pyproject.toml" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .gitignore | ||
- .github/dependabot.yml | ||
- .github/release-drafter.yml | ||
- .github/labeler.yml | ||
- .github/workflows/label.yml | ||
- .sonarcloud.properties | ||
- .pre-commit-config.yaml | ||
- .prettierignore | ||
- .pylintrc | ||
- .sonarcloud.properties | ||
- .sourcery.yaml | ||
- "pyproject.toml" | ||
license: | ||
- LICENSE | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- LICENSE | ||
- THIRD_PARTY_LICENSES | ||
security: | ||
- SECURITY.md | ||
- changed-files: | ||
- any-glob-to-any-file: SECURITY.md | ||
code-of-conduct: | ||
- CODE_OF_CONDUCT.md | ||
- changed-files: | ||
- any-glob-to-any-file: CODE_OF_CONDUCT.md | ||
changelog: | ||
- CHANGELOG.md | ||
- changed-files: | ||
- any-glob-to-any-file: CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.