We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdd3d8b commit 621f1f3Copy full SHA for 621f1f3
.github/workflows/build.yml
@@ -31,6 +31,20 @@ jobs:
31
- os: windows-latest
32
tox-env: pypy-test
33
34
+ # Python interpreter versions. :/
35
+ include:
36
+ - tox-env: py39-test
37
+ python: "3.9"
38
+ - tox-env: py310-test
39
+ python: "3.10"
40
+ - tox-env: py311-test
41
+ python: "3.11"
42
+ - tox-env: py312-test
43
+ python: "3.12"
44
+ - tox-env: py313-test
45
+ python: "3.13"
46
+ - tox-env: pypy-test
47
+ python: pypy3.9
48
49
steps:
50
- uses: actions/checkout@v3
pyproject.toml
@@ -36,7 +36,7 @@ dev = [
[tool.ruff]
target-version = "py39"
-include = ["mediafile.py", "test/**/*.py"]
+include = ["mediafile/**/*", "test/**/*.py"]
[tool.ruff.lint]
select = [
0 commit comments