Skip to content

Commit 621f1f3

Browse files
committed
Fixed revert issue with ruff and tox build
1 parent bdd3d8b commit 621f1f3

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,20 @@ jobs:
3131
- os: windows-latest
3232
tox-env: pypy-test
3333

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
3448

3549
steps:
3650
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dev = [
3636

3737
[tool.ruff]
3838
target-version = "py39"
39-
include = ["mediafile.py", "test/**/*.py"]
39+
include = ["mediafile/**/*", "test/**/*.py"]
4040

4141
[tool.ruff.lint]
4242
select = [

0 commit comments

Comments
 (0)