Skip to content

Commit 0944502

Browse files
authored
Merge pull request #68 from dolphin-emu/runner310
runner: Allow Python versions above 3.10
2 parents 726901a + 8b66563 commit 0944502

File tree

2 files changed

+218
-27
lines changed

2 files changed

+218
-27
lines changed

fifoci/runner/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ name = "fifoci-runner"
33
version = "0.1.0"
44
description = "FifoCI runner script, driving a Dolphin Emulator instance and collecting rendering results."
55
authors = [{ name = "Pierre Bourdon", email = "[email protected]" }]
6-
requires-python = ">=3.10,<3.11"
6+
requires-python = ">=3.10"
77
license = { text = "BSD-2-Clause" }
88

99
dependencies = [
10-
"Pillow>=9.4.0,<10",
11-
"requests>=2.28.2,<3",
10+
"Pillow>=11.3.0,<12",
11+
"requests>=2.32.5,<3",
1212
]
1313

1414
[project.scripts]
1515
fifoci-runner = "fifoci.runner.__main__:main"
1616

1717
[dependency-groups]
1818
dev = [
19-
"black>=22.12.0,<23"
19+
"black>=25.1.0,<26"
2020
]
2121

2222
[build-system]

0 commit comments

Comments
 (0)