Skip to content

Commit 2927aa8

Browse files
Add Python 3.11 (#509)
1 parent ebd477c commit 2927aa8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
name: Test
5050
strategy:
5151
matrix:
52-
pyver: ['3.8', '3.9', '3.10']
52+
pyver: ['3.8', '3.9', '3.10', '3.11']
5353
os: [ubuntu, macos, windows]
5454
include:
5555
- pyver: pypy-3.8

Diff for: aiohttp_debugtoolbar/panels/versions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def get_packages(cls) -> List[Dict[str, str]]:
4141
for distribution in Distribution.discover():
4242
name = distribution.metadata["Name"]
4343
dependencies = [d for d in distribution.requires or ()]
44-
url = distribution.metadata["Home-page"]
44+
url = distribution.metadata.get("Home-page")
4545

4646
packages.append(
4747
{

0 commit comments

Comments
 (0)