Skip to content

Commit

Permalink
updating poetry and github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mcfunley committed Jun 14, 2024
1 parent 0f86ed7 commit 7d94c3e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/flake8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- uses: abatilo/actions-poetry@v2.1.3
- uses: abatilo/actions-poetry@v2

- name: install dependencies
run: poetry install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/poetry-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
- 5432:5432

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- uses: abatilo/actions-poetry@v2.1.3
- uses: abatilo/actions-poetry@v2

- name: install dependencies
run: poetry install
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ readme = "pypi-readme.md"
python = ">=3.8.1"
sqlalchemy = ">=2.0"

[tool.poetry.dev-dependencies]

[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
pdoc3 = "^0.6.2"
pg8000 = "^1.13"
packaging = "^20.4"
pytest = "^7.1.0"

[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"

[build-system]
requires = ["poetry>=0.12"]
requires = ["poetry-core"]
build-backend = "poetry.masonry.api"

0 comments on commit 7d94c3e

Please sign in to comment.