Skip to content

Commit c6fa99b

Browse files
committed
Update workflows and README for poetry-dynamic-versioning
1 parent d67bbc5 commit c6fa99b

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

.github/workflows/actions/python-poetry/action.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ runs:
1414
- name: ✨ Install Poetry
1515
shell: bash
1616
run: |
17-
python3 -m pip install \
18-
"poetry==${{ inputs.poetry_version }}.*" \
19-
"poetry-dynamic-versioning"
17+
python3 -m pip install "poetry==${{ inputs.poetry_version }}.*"
2018
python3 -m pip install --upgrade requests
2119
2220
- name: 🐍 Set up Python

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ Via [`pipx`][pipx]:
3131
```console
3232
pip install pipx
3333
pipx install poetry
34-
pipx inject poetry poetry-dynamic-versioning poetry-pre-commit-plugin
34+
pipx inject poetry poetry-pre-commit-plugin
3535
```
3636

3737
Via `pip`:
3838

3939
```console
4040
pip install poetry
41-
poetry self add poetry-dynamic-versioning poetry-pre-commit-plugin
41+
poetry self add poetry-pre-commit-plugin
4242
```
4343

4444
## New project creation

{{cookiecutter.project_name}}/.github/workflows/actions/python-poetry/action.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ runs:
1414
- name: ✨ Install Poetry
1515
shell: bash
1616
run: |
17-
python3 -m pip install \
18-
"poetry==${{ "{{" }} inputs.poetry_version }}.*" \
19-
"poetry-dynamic-versioning"
17+
python3 -m pip install "poetry==${{ "{{" }} inputs.poetry_version }}.*"
2018
python3 -m pip install --upgrade requests
2119
2220
- name: 🐍 Set up Python

{{cookiecutter.project_name}}/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ Via [`pipx`][pipx]:
4949
```console
5050
pip install pipx
5151
pipx install poetry
52-
pipx inject poetry poetry-dynamic-versioning poetry-pre-commit-plugin
52+
pipx inject poetry poetry-pre-commit-plugin
5353
```
5454

5555
Via `pip`:
5656

5757
```console
5858
pip install poetry
59-
poetry self add poetry-dynamic-versioning poetry-pre-commit-plugin
59+
poetry self add poetry-pre-commit-plugin
6060
```
6161

6262
### Development tasks

0 commit comments

Comments
 (0)