Skip to content

Commit fa31427

Browse files
committed
Bump Python asset dependencies
These are the state of the art versions, already in use in the actively maintained tooling projects.
1 parent 39a96b4 commit fa31427

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

workflow-templates/check-python-task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ https://python-poetry.org/docs/#installation
3131
If your project does not already use Poetry, you can initialize the [`pyproject.toml`](https://python-poetry.org/docs/pyproject/) file using these commands:
3232

3333
```
34-
poetry init --python="^3.9" --dev-dependency="black@^21.12b0" --dev-dependency="flake8@^4.0.1" --dev-dependency="pep8-naming@^0.12.1"
34+
poetry init --python="^3.9" --dev-dependency="black@^22.3" --dev-dependency="flake8@^4.0.1" --dev-dependency="pep8-naming@^0.12.1"
3535
poetry install
3636
```
3737

3838
If already using Poetry, add the tool using this command:
3939

4040
```
41-
poetry add --dev "black@^21.12b0" "flake8@^4.0.1" "pep8-naming@^0.12.1"
41+
poetry add --dev "black@^22.3" "flake8@^4.0.1" "pep8-naming@^0.12.1"
4242
```
4343

4444
Commit the resulting `pyproject.toml` and `poetry.lock` files.

workflow-templates/test-go-integration-task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ https://python-poetry.org/docs/#installation
3535
If your project does not already use Poetry, you can initialize the [`pyproject.toml`](https://python-poetry.org/docs/pyproject/) file using these commands:
3636

3737
```
38-
poetry init --python="^3.9" --dev-dependency="pytest@^6.2.5" --dev-dependency="invoke@^1.5.0"
38+
poetry init --python="^3.9" --dev-dependency="pytest@^7.1.2" --dev-dependency="invoke@^1.7.0"
3939
poetry install
4040
```
4141

4242
If already using Poetry, add the tool using this command:
4343

4444
```
45-
poetry add --dev "pytest@^6.2.5" "invoke@^1.5.0"
45+
poetry add --dev "pytest@^7.1.2" "invoke@^1.7.0"
4646
```
4747

4848
Commit the resulting `pyproject.toml` and `poetry.lock` files.

workflow-templates/test-python-poetry-task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ https://python-poetry.org/docs/#installation
3333
If your project does not already use Poetry, you can initialize the [`pyproject.toml`](https://python-poetry.org/docs/pyproject/) file using these commands:
3434

3535
```
36-
poetry init --python="^3.9" --dev-dependency="pytest@^6.2.5"
36+
poetry init --python="^3.9" --dev-dependency="pytest@^7.1.2"
3737
poetry install
3838
```
3939

4040
If already using Poetry, add the tool using this command:
4141

4242
```
43-
poetry add --dev "pytest@^6.2.5"
43+
poetry add --dev "pytest@^7.1.2"
4444
```
4545

4646
Commit the resulting `pyproject.toml` and `poetry.lock` files.

0 commit comments

Comments
 (0)