Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/actions/commit-range/LICENSE.md

This file was deleted.

43 changes: 0 additions & 43 deletions .github/actions/commit-range/action.yml

This file was deleted.

3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ Added

Fixed
-----
- Revert running ``commit-range`` from the repository itself (again; we've reverted it
already once in 1.7.2_). This broke the GitHub action.

Internal
--------
- Require Pytest 6.2.4+ for compatibility across Python 3.9+ versions.
- Remove the unused ``commit-range`` action.


3.0.0_ - 2025-09-01
Expand Down
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ runs:
steps:
- name: Commit Range
id: commit-range
uses: ./.github/actions/commit-range
# The commit range action needs to be run from a remote repository. A reference
# to a local copy like `./.github/actions/commit-range` won't work since that
# path won't exist when this GitHub action is used from another repository.
uses: akaihola/darkgraylib/.github/actions/[email protected]
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
3 changes: 0 additions & 3 deletions release_tools/bump-version-patterns.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@
- |-
^ default: "~={old_version->new_version}"

- |-
^ uses: akaihola/darker/.github/actions/commit-range@{old_version->new_version}

"src/darker/version.py":
- |-
^__version__ *= *\"{old_version->new_version}\"
Loading