Migrate from Poetry to uv, improve workflows, drop support for Python 3.8#37
Merged
rlaphoenix merged 7 commits intomasterfrom Jan 19, 2026
Merged
Migrate from Poetry to uv, improve workflows, drop support for Python 3.8#37rlaphoenix merged 7 commits intomasterfrom
rlaphoenix merged 7 commits intomasterfrom
Conversation
Python 3.8 support simply could not be maintained without leaving the packaging and general build management system in the past a bit. Anyone stuck on Windows 7 has other ways around there to run latest Python versions, like 3.9, unofficially. The version number is also now dynamically fetched via hatch version, from the `__version__` variable and can be set with `uvx hatch version "1.2.3"`. The switch from poetry to uv is to modernize and speed up the build and packaging systems. Poetry was a great step forward but there's no denying that uv alongside hatchling does an even more phenomenal job.
Replaces the hardcoded version string with a value from the NTON_VERSION environment variable in setup.iss to allow dynamic versioning during build.
7004cfa to
fd2119d
Compare
Using pre-commit, all of these tasks are double checked before any new commits are made.
Various versions were updated, unnecessary stuff removed where appropriate, and InnoSetup now reads the version through hatch version (which reads it from the `__init__.py` file's `__version__` variable).
12fb923 to
2fec3e1
Compare
2fec3e1 to
de83f65
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
__version__variable in__init__.py. This version number will be used automatically in pyproject.toml as well as inside the InnoSetup installer when used in the CD workflow. The version number can be updated withuvx hatch version "1.2.3".