Skip to content

Commit e038ed5

Browse files
committed
Give up on black on 3.13.
1 parent 5ff8bb4 commit e038ed5

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
15+
python-version: ['3.9', '3.10', '3.11', '3.12']
1616

1717
steps:
1818
- uses: actions/checkout@main

.github/workflows/smoke-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
23+
python-version: ['3.9', '3.10', '3.11', '3.12']
2424

2525
steps:
2626
- uses: actions/checkout@main

tests/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@ def python_version(request):
1414

1515
@pytest.fixture
1616
def default_answers(python_version):
17-
highest_version_index = PYTHON_VERSIONS.index(python_version)
18-
return {"python_versions": PYTHON_VERSIONS[0 : (highest_version_index + 1)]}
17+
return {"python_versions": [python_version]}

0 commit comments

Comments
 (0)