Skip to content

Commit 3edb9c4

Browse files
committed
2 parents 8058cc8 + 3fc7a93 commit 3edb9c4

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ on:
44
merge_group:
55
push:
66
branches-ignore:
7-
# disabled for jaraco/skeleton#103
8-
# - gh-readonly-queue/** # Temporary merge queue-related GH-made branches
7+
# temporary GH branches relating to merge queues (jaraco/skeleton#93)
8+
- gh-readonly-queue/**
9+
tags:
10+
# required if branches-ignore is supplied (jaraco/skeleton#103)
11+
- '**'
912
pull_request:
1013

1114
permissions:
@@ -31,7 +34,6 @@ jobs:
3134
matrix:
3235
python:
3336
- "3.8"
34-
- "3.11"
3537
- "3.12"
3638
platform:
3739
- ubuntu-latest
@@ -42,6 +44,8 @@ jobs:
4244
platform: ubuntu-latest
4345
- python: "3.10"
4446
platform: ubuntu-latest
47+
- python: "3.11"
48+
platform: ubuntu-latest
4549
# disabled (https://github.com/jaraco/cssutils/issues/39)
4650
# - python: pypy3.10
4751
# platform: ubuntu-latest

.readthedocs.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ build:
1010
os: ubuntu-lts-latest
1111
tools:
1212
python: latest
13+
# post-checkout job to ensure the clone isn't shallow jaraco/skeleton#114
14+
jobs:
15+
post_checkout:
16+
- git fetch --unshallow || true

ruff.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
[lint]
2+
extend-select = [
3+
"C901",
4+
"W",
5+
]
26
ignore = [
37
# https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
48
"W191",

setup.cfg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@ testing =
4141
pytest >= 6
4242
pytest-checkdocs >= 2.4
4343
pytest-cov
44-
pytest-mypy; \
45-
# workaround for jaraco/skeleton#22
46-
python_implementation != "PyPy"
44+
pytest-mypy
4745
pytest-enabler >= 2.2
4846
pytest-ruff >= 0.2.1
4947

@@ -58,8 +56,6 @@ testing =
5856
docs =
5957
# upstream
6058
sphinx >= 3.5
61-
# workaround for sphinx/sphinx-doc#11662
62-
sphinx < 7.2.5
6359
jaraco.packaging >= 9.3
6460
rst.linker >= 1.9
6561
furo

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ extras =
1212
[testenv:diffcov]
1313
description = run tests and check that diff from main is covered
1414
deps =
15+
{[testenv]deps}
1516
diff-cover
1617
commands =
1718
pytest {posargs} --cov-report xml

0 commit comments

Comments
 (0)