-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Transition tooling to hatch
#32
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0a66eec
Transitions all possible items to use hatch and modern configuration
stumpylog 633d6d4
Updates for PR comments
stumpylog 6635a45
Removes pre-commit default Python language and adds environment to ru…
stumpylog e899e19
Removes 3.8 from matrices
stumpylog 39fd37b
Adds documentation for how to contribute code or documentation updates
stumpylog 0fcd3ec
Fixes some spelling and adds a few words to the dictionary
stumpylog File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -14,12 +14,14 @@ jobs: | |
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: pip install -r requirements/build-docs.txt | ||
cache: pip | ||
- name: Install dependecies | ||
run: | | ||
pip install --upgrade hatch uv | ||
- name: Publish Develop Docs | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
cd docs | ||
mike deploy --push develop | ||
hatch run docs:deploy_develop | ||
concurrency: | ||
group: publish-docs |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,12 +14,14 @@ jobs: | |
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: pip install -r requirements/build-docs.txt | ||
cache: pip | ||
- name: Install dependecies | ||
run: | | ||
pip install --upgrade hatch uv | ||
- name: Publish ${{ github.event.release.name }} Docs | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
cd docs | ||
mike deploy --push --update-aliases ${{ github.event.release.name }} latest | ||
hatch run docs:deploy_latest ${{ github.event.release.name }} | ||
concurrency: | ||
group: publish-docs |
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
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 |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# Contributing | ||
|
||
## Tool Setup | ||
|
||
### `python` | ||
|
||
To contribute code or documentation updates, an installation of Python 3 is required. | ||
|
||
### `hatch` | ||
|
||
This project utilizes [`hatch`](https://hatch.pypa.io/latest/) to manage Python environments for development and testing. Follow | ||
[the `hatch` installation instructions](https://hatch.pypa.io/latest/install/) before continuing through this document. | ||
|
||
### `pre-commit` | ||
|
||
Additionally, this project uses [`pre-commit`](https://pre-commit.com/) Git hooks to run linting and formatting checks against each commit. See [the `pre-commit` installation instructions](https://pre-commit.com/#install) for how to install this tool. | ||
|
||
Once installed, run `pre-commit install` to set up the git hook scripts: | ||
Archmonger marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
``` shell | ||
$ pre-commit install | ||
pre-commit installed at .git/hooks/pre-commit | ||
``` | ||
|
||
### Git | ||
|
||
Clone the repository using: | ||
|
||
``` shell | ||
git clone https://github.com/Archmonger/ServeStatic.git | ||
cd ServeStatic | ||
``` | ||
|
||
All example commands are expected to be run from the `ServeStatic` folder. | ||
|
||
## Code Contributions | ||
|
||
Ensure you have followed the [tool setup](#tool-setup) instructions before following the instructions below. | ||
|
||
### Development | ||
|
||
#### Linting | ||
|
||
The project uses `flake8` and `isort` for linting and uses `black` to format code. To run the all linters: | ||
|
||
``` shell | ||
hatch run lint:check | ||
``` | ||
|
||
Or select a specific linter: | ||
|
||
``` shell | ||
hatch run lint:flake8 | ||
``` | ||
|
||
!!! tip | ||
|
||
Linting is likely to see an update in the near future to use `ruff` for linting and formatting. | ||
|
||
### Testing | ||
|
||
Tests are run across a matrix of Python and Django versions to ensure full compatibility with all supported versions. | ||
|
||
#### Full Test Suite | ||
|
||
To run the full test suite, using the system Python: | ||
|
||
``` shell | ||
hatch test | ||
``` | ||
|
||
To select a particular Python version: | ||
|
||
``` shell | ||
hatch test --python 3.9 | ||
``` | ||
|
||
!!! tip | ||
|
||
`hatch` can manage Python versions for you, for example installing Python 3.9: `hatch python install 3.9` | ||
|
||
See the [hatch documentation](https://hatch.pypa.io/latest/tutorials/python/manage/) | ||
|
||
To select a particular Django version: | ||
|
||
``` shell | ||
hatch test --include "django=5.1" | ||
``` | ||
|
||
#### Specific Test(s) | ||
|
||
To run only a specific test: | ||
|
||
``` shell | ||
hatch test -k test_get_js_static_file | ||
``` | ||
|
||
!!! tip | ||
|
||
Additional arguments are passed on to pytest. | ||
|
||
See the [pytest documentation](https://docs.pytest.org/en/8.3.x/reference/reference.html#command-line-flags) for options | ||
|
||
## Documentation Contributions | ||
|
||
Ensure you have followed the [tool setup](#tool-setup) instructions before following the instructions below. | ||
|
||
### Modifying Documentation | ||
|
||
1. Start the `mkdocs` server by running `hatch run docs:serve` | ||
1. Visit [the documentation site](http://localhost:8000/) in your preferred browser | ||
1. Edit the documentation. The site will load change as documentation files change. |
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 |
---|---|---|
|
@@ -31,3 +31,7 @@ sublicense | |
middleware | ||
unhashed | ||
async | ||
linter | ||
linters | ||
linting | ||
pytest |
Oops, something went wrong.
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.
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.
I don't mind making the switch to
pypa/gh-action-pypi-publish
within this PR, since we're already touching this file anywaysEDIT: Looks like there might be a bit that goes into getting that workflow running - We can skip it for now if it's too involved.
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.
Yes, it would take some work on PyPi (https://docs.pypi.org/trusted-publishers/).
I was thinking to do that in a separate PR, this on was growing enough already! Perhaps doing some updates to create a GitHub release with artifacts, publish, etc, on the creation of a semver tag? Since this uses Keep a Changelog, even that can be pulled out automatically and added to the release
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.
As an idea of how I suggest updating the actions, I use this flow: https://github.com/stumpylog/gotenberg-client/actions/runs/10653499633
Basically, the checks like tests, documentation and building a wheel/sdist always run, then a release to Github and Pypi run when a tag is created to do those only on a tag. This would also include publishing the versioned documentation.
If that sounds alright, I'm happy to work on it (in a separate PR)
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.
Unless I'm misunderstanding your comment, that is effectively what is currently being done in this repo but in an event driven fashion rather than polling on each merge.
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.
You still need to manually create the release, attach artifacts and update the change log right? I don't see anything handling that.
My own preference is to simply push a tag and let the jobs handle that based on what was pushed, and only after that double check of testing, building, etc
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.
Ahhh okay I understand your point - Yeah manually creating the GH releases is unnecessary manual labor. If we can automate that would be fantastic.