Skip to content

Commit fb8cbf3

Browse files
renovate-botgcf-owl-bot[bot]parthea
authored
chore(deps): update all dependencies (#460)
* chore(deps): update all dependencies * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * ping pytest-asyncio < 23 * chore(deps): update all dependencies * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
1 parent e718522 commit fb8cbf3

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/pytype.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Checkout
1111
uses: actions/checkout@v4
1212
- name: Setup Python
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: "3.8"
1616
- name: Install nox

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"asyncmock",
4242
"pytest",
4343
"pytest-cov",
44-
"pytest-asyncio",
44+
"pytest-asyncio<0.23",
4545
]
4646
UNIT_TEST_EXTERNAL_DEPENDENCIES: List[str] = []
4747
UNIT_TEST_LOCAL_DEPENDENCIES: List[str] = []

owlbot.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ def pytype(session):
139139
def docfx(session):""",
140140
)
141141

142+
# Remove once issues with pytest-asyncio 0.23.x have been resolved
143+
# https://github.com/pytest-dev/pytest-asyncio/issues?q=is%3Aissue+is%3Aopen+0.23.2+
144+
s.replace("noxfile.py", "\"pytest-asyncio\"", "\"pytest-asyncio<0.23\"")
145+
142146
python.py_samples(skip_readmes=True)
143147

144148
# run format session for all directories which have a noxfile

0 commit comments

Comments
 (0)