Skip to content

Commit 22d7163

Browse files
bump dev dependencies
1 parent a487028 commit 22d7163

File tree

3 files changed

+36
-85
lines changed

3 files changed

+36
-85
lines changed

.github/workflows/python-lint-and-test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
11+
# Note we don't test version 3.7 as many dev deps require >= 3.8
12+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1213

1314
steps:
1415
- uses: actions/checkout@v3

poetry.lock

+30-80
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ build-backend = "poetry.core.masonry.api"
4242
python = ">=3.7.0"
4343

4444
[tool.poetry.dev-dependencies]
45-
pytest = "^7.3.1"
46-
ruff = "^0.0.263"
47-
mypy = "^1.2.0"
48-
black = "^23.3.0"
45+
ruff = "^0.3.5"
46+
pytest = { version="^8.1.1", python=">=3.8" }
47+
mypy = { version="^1.9.0", python=">=3.8" }
48+
black = { version="^24.3.0", python=">=3.8" }
4949

5050
[tool.ruff]
5151
select = ["E", "W", "F", "B", "I", "UP", "PL"]

0 commit comments

Comments
 (0)