-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #538 from akaihola/release-1.7.3
Release 1.7.3
- Loading branch information
Showing
5 changed files
with
27 additions
and
13 deletions.
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
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 |
---|---|---|
|
@@ -137,11 +137,11 @@ How? | |
|
||
To install or upgrade, use:: | ||
|
||
pip install --upgrade darker~=1.7.2 | ||
pip install --upgrade darker~=1.7.3 | ||
|
||
Or, if you're using Conda_ for package management:: | ||
|
||
conda install -c conda-forge darker~=1.7.2 isort | ||
conda install -c conda-forge darker~=1.7.3 isort | ||
conda update -c conda-forge darker | ||
|
||
.. | ||
|
@@ -638,7 +638,7 @@ do the following: | |
.. code-block:: yaml | ||
- repo: https://github.com/akaihola/darker | ||
rev: 1.7.2 | ||
rev: 1.7.3 | ||
hooks: | ||
- id: darker | ||
|
@@ -657,7 +657,7 @@ other reformatter/linter tools you use to known compatible versions, for example | |
.. code-block:: yaml | ||
- repo: https://github.com/akaihola/darker | ||
rev: 1.7.2 | ||
rev: 1.7.3 | ||
hooks: | ||
- id: darker | ||
args: | ||
|
@@ -688,7 +688,7 @@ Note the inclusion of the isort Python package under ``additional_dependencies`` | |
.. code-block:: yaml | ||
- repo: https://github.com/akaihola/darker | ||
rev: 1.7.2 | ||
rev: 1.7.3 | ||
hooks: | ||
- id: darker | ||
args: [--isort] | ||
|
@@ -733,11 +733,11 @@ Create a file named ``.github/workflows/darker.yml`` inside your repository with | |
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-python@v5 | ||
- uses: akaihola/[email protected].2 | ||
- uses: akaihola/[email protected].3 | ||
with: | ||
options: "--check --diff --isort --color" | ||
src: "./src" | ||
version: "~=1.7.2" | ||
version: "~=1.7.3" | ||
lint: "flake8,pylint==2.13.1" | ||
There needs to be a working Python environment, set up using ``actions/setup-python`` | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""The version number for Darker is governed by this file""" | ||
|
||
__version__ = "1.7.2" | ||
__version__ = "1.7.3" |