Skip to content

Commit 1ab056f

Browse files
authored
Merge branch 'main' into new-event-loop-fixture
2 parents cd1144c + 92962d1 commit 1ab056f

File tree

14 files changed

+281
-16
lines changed

14 files changed

+281
-16
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,13 @@ jobs:
173173
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
174174
run: |
175175
set -e
176+
git fetch --tags --force # see https://github.com/actions/checkout/issues/290
176177
git for-each-ref "${GITHUB_REF}" --format='%(contents)' > release-notes.rst
177178
# Strip PGP signature from signed tags
178179
sed -i "/-----BEGIN PGP SIGNATURE-----/,/-----END PGP SIGNATURE-----\n/d" release-notes.rst
179180
- name: Convert Release Notes to Markdown
180181
run: |
181-
pandoc -s -o release-notes.md release-notes.rst
182+
pandoc --wrap=preserve -o release-notes.md release-notes.rst
182183
- name: Upload artifacts
183184
uses: actions/upload-artifact@v4
184185
with:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repos:
66
- id: check-merge-conflict
77
exclude: rst$
88
- repo: https://github.com/astral-sh/ruff-pre-commit
9-
rev: v0.12.2
9+
rev: v0.12.4
1010
hooks:
1111
- id: ruff
1212
args: [--fix]
@@ -42,7 +42,7 @@ repos:
4242
- id: check-yaml
4343
- id: debug-statements
4444
- repo: https://github.com/pre-commit/mirrors-mypy
45-
rev: v1.16.1
45+
rev: v1.17.0
4646
hooks:
4747
- id: mypy
4848
exclude: ^(docs|tests)/.*

changelog.d/+6aa3d3e0.added.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/+6fe51a75.downstream.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/+b22c903a.fixed.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/127.added.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/200.added.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/878.fixed.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/980.added.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
``--asyncio-debug`` CLI option and ``asyncio_debug`` configuration option to enable asyncio debug mode for the default event loop.

dependencies/default/constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
attrs==25.3.0
22
coverage==7.9.2
33
exceptiongroup==1.3.0
4-
hypothesis==6.135.26
4+
hypothesis==6.136.1
55
iniconfig==2.1.0
66
packaging==25.0
77
pluggy==1.6.0

0 commit comments

Comments
 (0)