Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several updates across templates, workflows, Docker-related scripts, and testing configurations. The changes aim to enhance usability, streamline development processes, and improve code quality. Key updates include new issue and pull request templates, workflow permissions adjustments, Docker enhancements, and testing refinements.
Templates Updates:
.github/ISSUE_TEMPLATE/bug_report.yml: Added a structured bug report template with fields for expected behavior, actual behavior, system information, and more..github/ISSUE_TEMPLATE/feature_request.yml: Introduced a feature request template with fields for feature details, implementation ideas, and urgency level..github/pull_request_template.md: Added a pull request template with a description section and checklist for unit tests, documentation, formatting, and type-checking.Workflow Enhancements:
.github/workflows/build_dist.yml: Updated permissions to includepull-requests,actions,checks,statuses,issues, anddiscussions..github/workflows/tests.yml: Consolidated linting and typing commands forblackandmypyinto single commands for better efficiency.Docker Improvements:
docker_files/build_image_and_run.py: Added an--only_buildargument to build images without running them, implemented image saving functionality, and improved container naming conventions. [1] [2] [3]Dockerfile: Removed theVOLUME datadirective to simplify the Docker configuration.Testing and Configuration Updates:
pyproject.toml: Added Black configuration with a line length of 120.tests/conftest.pyandtests/test_dummy.py: Simplified test assertions for readability and consistency. [1] [2] [3]run_pytests.py: Removed unused imports and improved code organization.