Skip to content

Commit

Permalink
Pending chores
Browse files Browse the repository at this point in the history
  • Loading branch information
monim67 committed Jul 2, 2023
1 parent 4911e14 commit b9783c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ jobs:
- name: Install poetry
run: pipx install poetry

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry

- name: Check poetry.lock
run: poetry lock --check
run: |
poetry env use ${{ matrix.python-version }}
poetry lock --check
- name: Install dependencies
run: |
Expand Down Expand Up @@ -56,7 +58,7 @@ jobs:
- name: Install poetry
run: pipx install poetry

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.0"
description = "Poetry plugin to update __version__ in __init__ file and other files containing version strings"
authors = ["Munim Munna <[email protected]>"]
readme = "README.rst"
packages = [{ include = "*", from = "src" }]
packages = [{ include = "poetry_bumpversion", from = "src" }]
repository = "https://github.com/monim67/poetry-bumpversion"
license = "MIT"
keywords = ["poetry", "bump", "version", "plugin"]
Expand Down Expand Up @@ -45,6 +45,7 @@ build-backend = "poetry.core.masonry.api"
target_version = ["py37", "py38", "py39", "py310", "py311"]

[tool.isort]
py_version = "37"
profile = "black"

[tool.mypy]
Expand Down

0 comments on commit b9783c2

Please sign in to comment.