-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: update poetry; update build script #48
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the build configuration by moving to Poetry dynamic versioning and revising related build scripts and workflows.
- Updated pyproject.toml to switch from fixed versioning to dynamic versioning using Poetry’s dynamic versioning plugin.
- Revised portable.py to remove git dependency and extract the version from the unpacked source distribution instead.
- Adjusted GitHub Actions workflows and README documentation to reflect the change in Poetry version usage.
Reviewed Changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
pyproject.toml | Updated project metadata and enabled dynamic versioning. |
portable.py | Removed git-based version extraction in favor of archive-based extraction; adjusted the pyinstaller command parameters. |
.github/workflows/build.yaml | Updated OS version and simplified Poetry installation command. |
README.md | Updated installation instructions to use Poetry >= 2. |
.github/workflows/release.yaml | Removed explicit Poetry version and the poetry-version-plugin command. |
.github/workflows/lint.yaml | Simplified Poetry installation command. |
.github/workflows/test.yaml | Simplified Poetry installation command. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the build tooling by switching from Poetry 1.x to Poetry 2+ and integrating poetry-dynamic-versioning. Key changes include:
- Updating pyproject.toml to use a dynamic version in the [project] section and configuring poetry-dynamic-versioning.
- Removing direct Git interactions in portable.py and adjusting the portable build process.
- Upgrading Poetry installation in GitHub workflow files.
Reviewed Changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
pyproject.toml | Migrate version handling to dynamic versioning and update plugins. |
portable.py | Remove Git dependency and modify portable build steps. |
README.md | Update Poetry installation instructions. |
.github/workflows/build.yaml | Upgrade target OS version and Poetry installation routine. |
.github/workflows/lint.yaml | Update Poetry installation routine. |
.github/workflows/release.yaml | Update Poetry installation and remove plugin installation. |
.github/workflows/test.yaml | Update Poetry installation routine. |
Comments suppressed due to low confidence (2)
pyproject.toml:13
- The static version '0.0.0' in the [tool.poetry] section may conflict with the dynamic version declared in [project]. Consider removing the static version field if dynamic versioning is intended.
version = "0.0.0"
portable.py:66
- The updated version check asserts that 'Version 0.0.0' is not present in the help output, which could mask issues with the dynamic versioning setup. Consider verifying the executable displays the expected dynamic version instead of a hardcoded placeholder.
"Version 0.0.0" not in subprocess.run(["dist/smpmgr/smpmgr", "--help"], capture_output=True).stdout.decode()
4686c8c
to
129597e
Compare
129597e
to
c7521ba
Compare
I'm looking forward to this pull request being merged so I can continue with the integration in NixOS/nixpkgs#389115. |
Closes #46