Migrate from poetry to uv, sphinx to mkdocs #474
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 makes a comprehensive migration from Poetry to uv for dependency management, updates the development and documentation workflows to use uv and MkDocs, and modernizes the documentation structure and build process. It removes legacy Sphinx and Poetry configurations, updates CI/CD pipelines, and provides clearer developer instructions.
The most important changes are:
Dependency Management and Development Workflow
CONTRIBUTING.MD,docs/contributing.md,.pre-commit-config.yaml,.python-version) [1] [2] [3] [4]Continuous Integration and Deployment
tests.yaml,smoke_tests.yaml,static_code_checks.yaml,publish_and_release.yml) to use uv for dependency installation, environment setup, and running scripts/tests, removing all Poetry-related steps and caches. [1] [2] [3] [4] [5] [6] [7].github/workflows/docs.ymlfor building and deploying docs with uv and MkDocs, and removed legacy Sphinx-based workflows (docs_build.yml,docs_publish.yml). [1] [2] [3]Documentation System Modernization
docs/Makefile), updating the documentation structure, and adding new guides for building and serving docs locally with uv and MkDocs. (docs/README.md,docs/api.md,docs/examples/index.md) [1] [2] [3] [4]mkdocs.ymland clarified the directory structure and build instructions.General Cleanup
These changes collectively modernize the project's developer experience, streamline CI/CD, and make documentation easier to build and maintain.