Skip to content

Commit 6cf8de2

Browse files
authored
Merge branch 'main' into ruff-format
2 parents 030819e + 15eff0d commit 6cf8de2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2
22
updates:
33
- package-ecosystem: "pip"
4-
directory: "/pyperformance/requirements"
4+
directory: "/"
55
exclude-paths:
6-
- "pyperformance/data-files/"
6+
- "pyperformance/data-files/**"
77
schedule:
88
interval: "monthly"

pyperformance/_pyproject_toml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import packaging.version
2121

2222
try:
23-
import tomllib # type: ignore[import] # tomllib doesn't exist on 3.7-3.10
23+
import tomllib # type: ignore[import-not-found] # tomllib doesn't exist on 3.7-3.10
2424
except ImportError:
2525
import tomli as tomllib
2626

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ dependencies = [
7272
]
7373

7474
optional-dependencies.dev = [
75-
"mypy==1.2",
76-
"tomli", # Needed even on 3.11+ for typechecking with mypy
75+
"mypy==1.17.1",
76+
"tomli", # Needed even on 3.11+ for typechecking with mypy
7777
"tox",
7878
]
7979
urls = { Homepage = "https://github.com/python/pyperformance" }

0 commit comments

Comments
 (0)