Skip to content

Commit b175f3d

Browse files
committed
👌 IMPROVE: Bump dependencies (poetry, pytest)
1 parent b7510e9 commit b175f3d

File tree

3 files changed

+38
-45
lines changed

3 files changed

+38
-45
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: [3.9, "3.10"]
10-
os: [ubuntu-18.04, ubuntu-latest, macos-latest, windows-latest]
9+
python-version: [3.9, "3.10", 3.11]
10+
os: [ubuntu-22.04, ubuntu-latest, macos-latest, windows-latest]
1111
runs-on: ${{ matrix.os }}
1212
steps:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-python@v2
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: Run image
18-
uses: abatilo/actions-poetry@v2.0.0
18+
uses: abatilo/actions-poetry@v2
19+
with:
20+
poetry-version: "1.4"
1921
- name: Install dependencies
20-
run: poetry install
22+
run: poetry install --with dev
2123
- name: Run test
2224
run: poetry run pytest

poetry.lock

Lines changed: 30 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ windows-curses = {version = "^2.2.0", platform = "win32"}
1515
dataclasses = { version = "^0.8", python = "~3.6" }
1616
anytree = {version = "^2.8"}
1717

18-
[tool.poetry.dev-dependencies]
19-
pytest = "^6.2.5"
18+
[tool.poetry.group.dev.dependencies]
19+
pytest = "^7.2.0"
2020

2121
[build-system]
2222
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)